diff options
author | Paulo Neves <ptsneves@gmail.com> | 2022-07-14 13:29:59 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-07-15 12:22:08 +0100 |
commit | de85c2f47b66ec48496c088a5d62d53a2dd899b1 (patch) | |
tree | 6c23cc8c9d66491348f7876566c4213e0e14dc7d /meta/lib/oeqa | |
parent | 63935febda8ad316598e8f73f1e4cbf04fb47ef0 (diff) | |
download | poky-de85c2f47b66ec48496c088a5d62d53a2dd899b1.tar.gz |
oeqa: test_invalid_recipe_src_uri expect parse time error
Before this commit the test expected a runtime error but the logic of
the fetcher changed so that files not found for checksumming cause a
fatal interruption of the parse, thuse never reaching the runtime error
this test expected. This commit aligns with the bitbake changes to the
fetcher.
(From OE-Core rev: 8b506bfbdd18dfdb411080f69ef5c0d416b3f2e0)
Signed-off-by: Paulo Neves <ptsneves@gmail.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 | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/meta/lib/oeqa/selftest/cases/bbtests.py b/meta/lib/oeqa/selftest/cases/bbtests.py index b42bbb651d..89267c7145 100644 --- a/meta/lib/oeqa/selftest/cases/bbtests.py +++ b/meta/lib/oeqa/selftest/cases/bbtests.py | |||
@@ -145,12 +145,10 @@ INHERIT:remove = \"report-error\" | |||
145 | """) | 145 | """) |
146 | self.track_for_cleanup(os.path.join(self.builddir, "download-selftest")) | 146 | self.track_for_cleanup(os.path.join(self.builddir, "download-selftest")) |
147 | 147 | ||
148 | bitbake('-ccleanall man-db') | ||
149 | result = bitbake('-c fetch man-db', ignore_status=True) | 148 | result = bitbake('-c fetch man-db', ignore_status=True) |
150 | bitbake('-ccleanall man-db') | ||
151 | self.delete_recipeinc('man-db') | 149 | self.delete_recipeinc('man-db') |
152 | self.assertEqual(result.status, 1, msg="Command succeded when it should have failed. bitbake output: %s" % result.output) | 150 | self.assertEqual(result.status, 1, msg="Command succeded when it should have failed. bitbake output: %s" % result.output) |
153 | self.assertIn('Fetcher failure: Unable to find file file://invalid anywhere. The paths that were searched were:', result.output) | 151 | self.assertIn('Unable to get checksum for man-db SRC_URI entry invalid: file could not be found', result.output) |
154 | 152 | ||
155 | def test_rename_downloaded_file(self): | 153 | def test_rename_downloaded_file(self): |
156 | # TODO unique dldir instead of using cleanall | 154 | # TODO unique dldir instead of using cleanall |