From 194e95f3f068456f30c0e971eb8e6e775279427c Mon Sep 17 00:00:00 2001 From: Markus Lehtonen Date: Fri, 30 Sep 2016 13:06:06 +0300 Subject: 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 Signed-off-by: Ross Burton --- scripts/oe-build-perf-test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts/oe-build-perf-test') 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__': -- cgit 1.2.3-korg