diff options
author | Chen Qi <Qi.Chen@windriver.com> | 2019-08-23 17:13:23 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-08-28 11:31:22 +0100 |
commit | e97ed8dcaa139b52484697d1020ba2eb2bd2b909 (patch) | |
tree | 62b58ae0e25553c09e0613306bcdf6510c059124 /meta/lib/oeqa | |
parent | bc1cedc3eab0aacf03d973fe4396a42d17ab085e (diff) | |
download | poky-e97ed8dcaa139b52484697d1020ba2eb2bd2b909.tar.gz |
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>
Diffstat (limited to 'meta/lib/oeqa')
-rw-r--r-- | meta/lib/oeqa/selftest/cases/bbtests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/cases/bbtests.py b/meta/lib/oeqa/selftest/cases/bbtests.py index 0693ba8cf8..8e59bafae3 100644 --- a/meta/lib/oeqa/selftest/cases/bbtests.py +++ b/meta/lib/oeqa/selftest/cases/bbtests.py | |||
@@ -119,7 +119,7 @@ class BitbakeTests(OESelftestTestCase): | |||
119 | 119 | ||
120 | def test_bitbake_g(self): | 120 | def test_bitbake_g(self): |
121 | result = bitbake('-g core-image-minimal') | 121 | result = bitbake('-g core-image-minimal') |
122 | for f in ['pn-buildlist', 'recipe-depends.dot', 'task-depends.dot']: | 122 | for f in ['pn-buildlist', 'task-depends.dot']: |
123 | self.addCleanup(os.remove, f) | 123 | self.addCleanup(os.remove, f) |
124 | 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) | 124 | 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) |
125 | 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.") | 125 | 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.") |