aboutsummaryrefslogtreecommitdiff
path: root/run_tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'run_tests.py')
-rwxr-xr-xrun_tests.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/run_tests.py b/run_tests.py
index 802acc9..8d094dc 100755
--- a/run_tests.py
+++ b/run_tests.py
@@ -65,6 +65,10 @@ def run_tests():
os.mkdir(test_build_dir)
except OSError:
pass
+ try:
+ os.mkdir(install_dir)
+ except OSError:
+ pass
[run_test(t) for t in tests]
if __name__ == '__main__':