[OE-core] [PATCH] scripts/oe-selftest: return based on the test results

Stefan Stanacar stefanx.stanacar at intel.com
Fri Feb 7 10:08:51 UTC 2014


Regardless if the tests passed or not the script returned 0,
which isn't what one would expect.

Signed-off-by: Stefan Stanacar <stefanx.stanacar at intel.com>
---
 scripts/oe-selftest | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/scripts/oe-selftest b/scripts/oe-selftest
index 29fe010..8c4ea92 100755
--- a/scripts/oe-selftest
+++ b/scripts/oe-selftest
@@ -144,8 +144,10 @@ def main():
     add_include()
     result = runner.run(suite)
     log.info("Finished")
-
-    return 0
+    if result.wasSuccessful():
+        return 0
+    else:
+        return 1
 
 if __name__ == "__main__":
     try:
-- 
1.8.5.3




More information about the Openembedded-core mailing list