diff options
| -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\"") |
