diff options
| author | Fabien Mahot <fabien.mahot@smile.fr> | 2023-06-14 17:47:49 +0200 |
|---|---|---|
| committer | Steve Sakoman <steve@sakoman.com> | 2023-07-04 05:32:29 -1000 |
| commit | 5a3a4e3e499c78d1a7c8f591c0b4455aafe34490 (patch) | |
| tree | 268567ad49de84776abc95283fac7bdbbf8cfecf | |
| parent | 011e2bb251bd84f534512da2c59c69b0a8e7629f (diff) | |
| download | poky-5a3a4e3e499c78d1a7c8f591c0b4455aafe34490.tar.gz | |
oeqa/selftest/bbtests: add non-existent prefile/postfile tests
Fixes [YOCTO #10725]
(From OE-Core rev: 47966f06f0c221b00d773f8e9db20190a80d668a)
Signed-off-by: Fabien Mahot <fabien.mahot@smile.fr>
Reviewed-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit b0c33655fad5b2e7d96a45b6210527dfb766797b)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
| -rw-r--r-- | meta/lib/oeqa/selftest/cases/bbtests.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/meta/lib/oeqa/selftest/cases/bbtests.py b/meta/lib/oeqa/selftest/cases/bbtests.py index 1dd2839c8d..31aa5680f0 100644 --- a/meta/lib/oeqa/selftest/cases/bbtests.py +++ b/meta/lib/oeqa/selftest/cases/bbtests.py | |||
| @@ -188,6 +188,10 @@ SSTATE_DIR = \"${TOPDIR}/download-selftest\" | |||
| 188 | self.assertTrue(find, "No version returned for searched recipe. bitbake output: %s" % result.output) | 188 | self.assertTrue(find, "No version returned for searched recipe. bitbake output: %s" % result.output) |
| 189 | 189 | ||
| 190 | def test_prefile(self): | 190 | def test_prefile(self): |
| 191 | # Test when the prefile does not exist | ||
| 192 | result = runCmd('bitbake -r conf/prefile.conf', ignore_status=True) | ||
| 193 | self.assertEqual(1, result.status, "bitbake didn't error and should have when a specified prefile didn't exist: %s" % result.output) | ||
| 194 | # Test when the prefile exists | ||
| 191 | preconf = os.path.join(self.builddir, 'conf/prefile.conf') | 195 | preconf = os.path.join(self.builddir, 'conf/prefile.conf') |
| 192 | self.track_for_cleanup(preconf) | 196 | self.track_for_cleanup(preconf) |
| 193 | ftools.write_file(preconf ,"TEST_PREFILE=\"prefile\"") | 197 | ftools.write_file(preconf ,"TEST_PREFILE=\"prefile\"") |
| @@ -198,6 +202,10 @@ SSTATE_DIR = \"${TOPDIR}/download-selftest\" | |||
| 198 | self.assertIn('localconf', result.output) | 202 | self.assertIn('localconf', result.output) |
| 199 | 203 | ||
| 200 | def test_postfile(self): | 204 | def test_postfile(self): |
| 205 | # Test when the postfile does not exist | ||
| 206 | result = runCmd('bitbake -R conf/postfile.conf', ignore_status=True) | ||
| 207 | self.assertEqual(1, result.status, "bitbake didn't error and should have when a specified postfile didn't exist: %s" % result.output) | ||
| 208 | # Test when the postfile exists | ||
| 201 | postconf = os.path.join(self.builddir, 'conf/postfile.conf') | 209 | postconf = os.path.join(self.builddir, 'conf/postfile.conf') |
| 202 | self.track_for_cleanup(postconf) | 210 | self.track_for_cleanup(postconf) |
| 203 | ftools.write_file(postconf , "TEST_POSTFILE=\"postfile\"") | 211 | ftools.write_file(postconf , "TEST_POSTFILE=\"postfile\"") |
