summaryrefslogtreecommitdiffstats
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-10-01 21:45:56 +0100
commite4e6ff3be32f0d922b399588498a7beaf39c86d7 (patch)
tree3b6dafbdd4f3319222f8ac483c5ce7b95561c2ed /scripts
parentdebb7bb86fff5e26505bedf6bc7baa05b8a545e7 (diff)
downloadpoky-e4e6ff3be32f0d922b399588498a7beaf39c86d7.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). (From OE-Core rev: 194e95f3f068456f30c0e971eb8e6e775279427c) Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
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):
203 if result.wasSuccessful(): 203 if result.wasSuccessful():
204 return 0 204 return 0
205 205
206 return 1 206 return 2
207 207
208 208
209if __name__ == '__main__': 209if __name__ == '__main__':