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-10-01 21:45:56 +0100 |
commit | e4e6ff3be32f0d922b399588498a7beaf39c86d7 (patch) | |
tree | 3b6dafbdd4f3319222f8ac483c5ce7b95561c2ed | |
parent | debb7bb86fff5e26505bedf6bc7baa05b8a545e7 (diff) | |
download | poky-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>
-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): | |||
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 | ||
209 | if __name__ == '__main__': | 209 | if __name__ == '__main__': |