aboutsummaryrefslogtreecommitdiff
path: root/run_tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'run_tests.py')
-rwxr-xr-xrun_tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/run_tests.py b/run_tests.py
index e8b0c8f..77e6754 100755
--- a/run_tests.py
+++ b/run_tests.py
@@ -31,5 +31,5 @@ if __name__ == '__main__':
myenv['CXX'] = 'clang++'
print("'\nRunnint unittests with clang.\n")
returncode += subprocess.call([sys.executable, 'run_unittests.py'], env=myenv)
- returncode += subprocess.call([sys.executable, 'run_project_tests.py'])
+ returncode += subprocess.call([sys.executable, 'run_project_tests.py'] + sys.argv[1:])
sys.exit(returncode)