aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorMarkus Lehtonen <markus.lehtonen@linux.intel.com>2016-09-30 13:06:06 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-09-30 17:14:13 +0100
commit194e95f3f068456f30c0e971eb8e6e775279427c (patch)
tree1643af0a1a40413d3e6cb1d726e46909451f577a /scripts
parentf1c7b4f16dc9a7e5155108641fed8b3d98c931f3 (diff)
downloadopenembedded-core-contrib-194e95f3f068456f30c0e971eb8e6e775279427c.tar.gz
oe-build-perf-test: return 2 if some tests failed
Add a new return value '2' that indicates that some tests failed but there were no fatal errors (i.e. configuration mistakes or bugs in the tests themselves). Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/oe-build-perf-test2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/oe-build-perf-test b/scripts/oe-build-perf-test
index bb5c382d26..638e195efb 100755
--- a/scripts/oe-build-perf-test
+++ b/scripts/oe-build-perf-test
@@ -203,7 +203,7 @@ def main(argv=None):
if result.wasSuccessful():
return 0
- return 1
+ return 2
if __name__ == '__main__':