Salome HOME
Merge remote-tracking branch 'origin/V8_3_BR' into ngr/python3_dev
[modules/kernel.git] / bin / runTests.py
index a7e8fc0543a2caa0471b86ad6d8e2f3c48ff95fe..31f662576f2c546da86da1d08b8cc7e2b8743e78 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2015-2016  CEA/DEN, EDF R&D, OPEN CASCADE
+# Copyright (C) 2015-2017  CEA/DEN, EDF R&D, OPEN CASCADE
 #
 # This library is free software; you can redistribute it and/or
 # modify it under the terms of the GNU Lesser General Public
@@ -86,5 +86,5 @@ def runTests(args, exe=None):
   command = ["ctest"] + args
   p = subprocess.Popen(command, cwd=testPath)
   p.communicate()
-  sys.exit(p.returncode)
+  return p.returncode
 #