summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Freyther <zecke@selfish.org>2007-04-13 20:24:30 +0000
committerHolger Freyther <zecke@selfish.org>2007-04-13 20:24:30 +0000
commit350da441478873c72e4e954d2a9ec1db6d858c7d (patch)
tree1a1b11d7a360706f86f76302e0441655a9f87827
parent21e38b734411efce376ac3bbdb7993184fd45c80 (diff)
downloadopenembedded-350da441478873c72e4e954d2a9ec1db6d858c7d.tar.gz
bin/bittest: Make fatal errors bb.fatal
-rwxr-xr-xbin/bittest6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/bittest b/bin/bittest
index 5db993edd1..84cc33d47d 100755
--- a/bin/bittest
+++ b/bin/bittest
@@ -104,16 +104,16 @@ def start_testing():
cook.parseConfigurationFile( os.path.join( "conf", "bitbake.conf" ) )
data = _load_config('bitbake.conf')
if data == None:
- bb.error("Could not parse the bitbake.conf")
+ bb.fatal("Could not parse the bitbake.conf")
elif bb.data.getVar('BITBAKETEST_BITBAKE_CONF', data ) == None:
- bb.error("You are not using the bitbake.conf from bittest please check your BBPATH")
+ bb.fatal("You are not using the bitbake.conf from bittest please check your BBPATH")
bb.data.inheritFromOS(data)
# Parse the test configuration
test_config = _load_config('testrun.conf')
if test_config == None:
- bb.error("Could not parse the bittest configuration file")
+ bb.fatal("Could not parse the bittest configuration file")
test_options = parse_test_options(test_config)
# start running the test