aboutsummaryrefslogtreecommitdiff
path: root/run_tests.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2013-04-06 22:06:58 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2013-04-06 22:06:58 +0300
commit5465572c789a1b0f8cad4d5fd7035d8d440d150e (patch)
treef8cdca225bf52cc8803bcabefa816af33f29fc14 /run_tests.py
parente05af1bf9eacc0fa7957ac813c1991bbfe7e7d09 (diff)
downloadmeson-5465572c789a1b0f8cad4d5fd7035d8d440d150e.zip
meson-5465572c789a1b0f8cad4d5fd7035d8d440d150e.tar.gz
meson-5465572c789a1b0f8cad4d5fd7035d8d440d150e.tar.bz2
Run objective C tests in test suite.
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 5ab0713..e5fe347 100755
--- a/run_tests.py
+++ b/run_tests.py
@@ -70,6 +70,10 @@ def run_tests():
frameworktests = gather_tests('test cases/frameworks')
else:
frameworktests = []
+ if not environment.is_windows():
+ objctests = gather_tests('test cases/objc')
+ else:
+ objctests = []
try:
os.mkdir(test_build_dir)
except OSError:
@@ -84,6 +88,8 @@ def run_tests():
[run_test(t) for t in platformtests]
print('\nRunning framework tests.\n')
[run_test(t) for t in frameworktests]
+ print('\nRunning extra language tests.\n')
+ [run_test(t) for t in objctests]
def check_file(fname):
linenum = 0