aboutsummaryrefslogtreecommitdiff
path: root/run_tests.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2017-02-02 19:43:03 +0200
committerGitHub <noreply@github.com>2017-02-02 19:43:03 +0200
commita9c4428c6925c921102e52aeaea1b92ed6914af1 (patch)
treebf1d3f780a28e732204e24de79caa2d3e8bcb67d /run_tests.py
parentccb0580f4f25b02df6acb8c445ebf60f2215dbc7 (diff)
parent00846ce26d87369043de59e071856668df698b2f (diff)
downloadmeson-a9c4428c6925c921102e52aeaea1b92ed6914af1.zip
meson-a9c4428c6925c921102e52aeaea1b92ed6914af1.tar.gz
meson-a9c4428c6925c921102e52aeaea1b92ed6914af1.tar.bz2
Merge pull request #1342 from centricular/commonpath-py34
Add our own implementation of os.path.commonpath
Diffstat (limited to 'run_tests.py')
-rwxr-xr-xrun_tests.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/run_tests.py b/run_tests.py
index 2dfbaff..005717e 100755
--- a/run_tests.py
+++ b/run_tests.py
@@ -20,9 +20,11 @@ from mesonbuild import mesonlib
if __name__ == '__main__':
returncode = 0
+ print('Running unittests.\n')
if mesonlib.is_linux():
- print('Running unittests.\n')
returncode += subprocess.call([sys.executable, 'run_unittests.py', '-v'])
+ else:
+ returncode += subprocess.call([sys.executable, 'run_unittests.py', '-v', 'InternalTests'])
# Ubuntu packages do not have a binary without -6 suffix.
if shutil.which('arm-linux-gnueabihf-gcc-6') and not platform.machine().startswith('arm'):
print('Running cross compilation tests.\n')