diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2017-02-02 19:43:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-02 19:43:03 +0200 |
commit | a9c4428c6925c921102e52aeaea1b92ed6914af1 (patch) | |
tree | bf1d3f780a28e732204e24de79caa2d3e8bcb67d /run_tests.py | |
parent | ccb0580f4f25b02df6acb8c445ebf60f2215dbc7 (diff) | |
parent | 00846ce26d87369043de59e071856668df698b2f (diff) | |
download | meson-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-x | run_tests.py | 4 |
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') |