diff options
author | Markus Lehtonen <markus.lehtonen@linux.intel.com> | 2016-09-30 13:06:06 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-09-30 17:14:13 +0100 |
commit | 194e95f3f068456f30c0e971eb8e6e775279427c (patch) | |
tree | 1643af0a1a40413d3e6cb1d726e46909451f577a /scripts/oe-build-perf-test | |
parent | f1c7b4f16dc9a7e5155108641fed8b3d98c931f3 (diff) | |
download | openembedded-core-194e95f3f068456f30c0e971eb8e6e775279427c.tar.gz openembedded-core-194e95f3f068456f30c0e971eb8e6e775279427c.tar.bz2 openembedded-core-194e95f3f068456f30c0e971eb8e6e775279427c.zip |
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/oe-build-perf-test')
-rwxr-xr-x | scripts/oe-build-perf-test | 2 |
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__': |