summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/selftest/cases
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oeqa/selftest/cases')
-rw-r--r--meta/lib/oeqa/selftest/cases/bbtests.py8
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 e659be5341..0b88316950 100644
--- a/meta/lib/oeqa/selftest/cases/bbtests.py
+++ b/meta/lib/oeqa/selftest/cases/bbtests.py
@@ -185,6 +185,10 @@ SSTATE_DIR = \"${TOPDIR}/download-selftest\"
185 self.assertTrue(find, "No version returned for searched recipe. bitbake output: %s" % result.output) 185 self.assertTrue(find, "No version returned for searched recipe. bitbake output: %s" % result.output)
186 186
187 def test_prefile(self): 187 def test_prefile(self):
188 # Test when the prefile does not exist
189 result = runCmd('bitbake -r conf/prefile.conf', ignore_status=True)
190 self.assertEqual(1, result.status, "bitbake didn't error and should have when a specified prefile didn't exist: %s" % result.output)
191 # Test when the prefile exists
188 preconf = os.path.join(self.builddir, 'conf/prefile.conf') 192 preconf = os.path.join(self.builddir, 'conf/prefile.conf')
189 self.track_for_cleanup(preconf) 193 self.track_for_cleanup(preconf)
190 ftools.write_file(preconf ,"TEST_PREFILE=\"prefile\"") 194 ftools.write_file(preconf ,"TEST_PREFILE=\"prefile\"")
@@ -195,6 +199,10 @@ SSTATE_DIR = \"${TOPDIR}/download-selftest\"
195 self.assertIn('localconf', result.output) 199 self.assertIn('localconf', result.output)
196 200
197 def test_postfile(self): 201 def test_postfile(self):
202 # Test when the postfile does not exist
203 result = runCmd('bitbake -R conf/postfile.conf', ignore_status=True)
204 self.assertEqual(1, result.status, "bitbake didn't error and should have when a specified postfile didn't exist: %s" % result.output)
205 # Test when the postfile exists
198 postconf = os.path.join(self.builddir, 'conf/postfile.conf') 206 postconf = os.path.join(self.builddir, 'conf/postfile.conf')
199 self.track_for_cleanup(postconf) 207 self.track_for_cleanup(postconf)
200 ftools.write_file(postconf , "TEST_POSTFILE=\"postfile\"") 208 ftools.write_file(postconf , "TEST_POSTFILE=\"postfile\"")