Browse Source

Regression suite: fix return value.

Kim Kulling 10 năm trước cách đây
mục cha
commit
011e1e9e16
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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