aboutsummaryrefslogtreecommitdiff
path: root/run_tests.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2013-03-03 20:30:46 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2013-03-03 20:30:46 +0200
commit4dda53483e8be4d7a76a61ef027a857bba652953 (patch)
treea8d99312fee6a8b9bd4960f53da091196a993a17 /run_tests.py
parent9262fe600ad22180d7e1a5179fa5d4f681b17cb7 (diff)
downloadmeson-4dda53483e8be4d7a76a61ef027a857bba652953.zip
meson-4dda53483e8be4d7a76a61ef027a857bba652953.tar.gz
meson-4dda53483e8be4d7a76a61ef027a857bba652953.tar.bz2
Simple test for OSX.
Diffstat (limited to 'run_tests.py')
-rwxr-xr-xrun_tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/run_tests.py b/run_tests.py
index 039712f..0a4e3e4 100755
--- a/run_tests.py
+++ b/run_tests.py
@@ -81,9 +81,9 @@ def run_tests():
os.mkdir(install_dir)
except OSError:
pass
- print('Running common tests.')
+ print('\nRunning common tests.\n')
[run_test(t) for t in commontests]
- print('Running platform dependent tetss')
+ print('\nRunning platform dependent tests.\n')
[run_test(t) for t in platformtests]
if __name__ == '__main__':