diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-05-01 23:06:53 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-05-01 23:09:08 +0100 |
commit | a85601aae19edf8db729a9d18ef1672fc6e95e98 (patch) | |
tree | f9c6a570337806157ce48af13b1519caa577d1b0 /bitbake/lib/bb/tests | |
parent | dabc5ae13ac34c4c3c45f5203c5fcff21cbaa864 (diff) | |
download | poky-a85601aae19edf8db729a9d18ef1672fc6e95e98.tar.gz |
bitbake: build: Disable warning about dependent tasks for now
This breaks with rm_work so disable the warning until we find a better
solution (and change the test accordingly too).
(Bitbake rev: 93e94c06baf013e3d072465a55bddd1fe61c0772)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/tests')
-rw-r--r-- | bitbake/lib/bb/tests/parse.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/tests/parse.py b/bitbake/lib/bb/tests/parse.py index aa7adc40f2..747fc35fc2 100644 --- a/bitbake/lib/bb/tests/parse.py +++ b/bitbake/lib/bb/tests/parse.py | |||
@@ -203,5 +203,5 @@ deltask do_fetch do_patch | |||
203 | self.assertTrue("addtask contained multiple 'after' keywords" in stdout) | 203 | self.assertTrue("addtask contained multiple 'after' keywords" in stdout) |
204 | self.assertTrue('addtask ignored: " do_patch"' in stdout) | 204 | self.assertTrue('addtask ignored: " do_patch"' in stdout) |
205 | self.assertTrue('deltask ignored: " do_patch"' in stdout) | 205 | self.assertTrue('deltask ignored: " do_patch"' in stdout) |
206 | self.assertTrue('dependent task do_foo for do_patch does not exist' in stdout) | 206 | #self.assertTrue('dependent task do_foo for do_patch does not exist' in stdout) |
207 | 207 | ||