mirror of
https://git.yoctoproject.org/poky
synced 2026-05-08 17:19:20 +00:00
bbtests.py: remove recipe-depends.dot
This file is giving misleading information. There's a patch for bitbake to remove the generation of this file. Remove it from OEQA as well. (From OE-Core rev: 691a45265a6a451c4bc7720ef39d99b84342822a) Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -119,7 +119,7 @@ class BitbakeTests(OESelftestTestCase):
|
||||
|
||||
def test_bitbake_g(self):
|
||||
result = bitbake('-g core-image-minimal')
|
||||
for f in ['pn-buildlist', 'recipe-depends.dot', 'task-depends.dot']:
|
||||
for f in ['pn-buildlist', 'task-depends.dot']:
|
||||
self.addCleanup(os.remove, f)
|
||||
self.assertTrue('Task dependencies saved to \'task-depends.dot\'' in result.output, msg = "No task dependency \"task-depends.dot\" file was generated for the given task target. bitbake output: %s" % result.output)
|
||||
self.assertTrue('busybox' in ftools.read_file(os.path.join(self.builddir, 'task-depends.dot')), msg = "No \"busybox\" dependency found in task-depends.dot file.")
|
||||
|
||||
Reference in New Issue
Block a user