aboutsummaryrefslogtreecommitdiff
path: root/run_tests.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2013-03-24 15:04:51 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2013-03-24 15:04:51 +0200
commit70f6b769a69aa741bd7757d82829e50a93303c50 (patch)
treec020d416c6d3b07e119b6b4dc2ef9fdacc776bc4 /run_tests.py
parent92084b6d9e71fc32a2e33658e2623003b14d4b0d (diff)
downloadmeson-70f6b769a69aa741bd7757d82829e50a93303c50.zip
meson-70f6b769a69aa741bd7757d82829e50a93303c50.tar.gz
meson-70f6b769a69aa741bd7757d82829e50a93303c50.tar.bz2
Added custom detector framework and a Boost detector to it.
Diffstat (limited to 'run_tests.py')
-rwxr-xr-xrun_tests.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/run_tests.py b/run_tests.py
index 04a6c20..ec598c1 100755
--- a/run_tests.py
+++ b/run_tests.py
@@ -72,6 +72,10 @@ def run_tests():
platformtests = gather_tests('test cases/windows')
else:
platformtests = gather_tests('test cases/linuxlike')
+ if not environment.is_osx() and not environment.is_windows():
+ frameworktests = gather_tests('test cases/frameworks')
+ else:
+ frameworktests = []
try:
os.mkdir(test_build_dir)
except OSError:
@@ -84,6 +88,8 @@ def run_tests():
[run_test(t) for t in commontests]
print('\nRunning platform dependent tests.\n')
[run_test(t) for t in platformtests]
+ print('\nRunning framework tests.\n')
+ [run_test(t) for t in frameworktests]
if __name__ == '__main__':
script_dir = os.path.split(__file__)[0]