Browse Source

Regression suite: fix return value.

Kim Kulling 10 years ago
parent
commit
011e1e9e16
1 changed files with 1 additions and 1 deletions
  1. 1 1
      test/regression/run.py

+ 1 - 1
test/regression/run.py

@@ -294,6 +294,6 @@ def run_test():
 if __name__ == "__main__":
     assimp_bin_path = sys.argv[1] if len(sys.argv) > 1 else 'assimp'
     print('Using assimp binary: ' + assimp_bin_path)
-    return run_test()
+    sys.exit( run_test() )
 
 # vim: ai ts=4 sts=4 et sw=4