Ver código fonte

Regression suite: fix return value.

Kim Kulling 10 anos atrás
pai
commit
011e1e9e16
1 arquivos alterados com 1 adições e 1 exclusões
  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