aboutsummaryrefslogtreecommitdiff
path: root/run_tests.py
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2017-02-03 15:54:43 +0530
committerNirbheek Chauhan <nirbheek@centricular.com>2017-02-18 02:37:32 +0530
commit82057ccd55d7159e15de27237953fd6b754f7750 (patch)
tree2838fad94046ca4acd59c9a5d673cc3b8ebec743 /run_tests.py
parent67d3d512ffae9de255c6954451c59816ae8faea9 (diff)
downloadmeson-82057ccd55d7159e15de27237953fd6b754f7750.zip
meson-82057ccd55d7159e15de27237953fd6b754f7750.tar.gz
meson-82057ccd55d7159e15de27237953fd6b754f7750.tar.bz2
Add unit tests related to absolute prefixes
Also split the unit tests into those that are actually Linux-specific and those that are not and can (and should) run on all platforms. This will give us much better coverage since a lot of these test platform-specific code in Meson that wraps features that we expose in a platform-agnostic way. Tests are for: https://github.com/mesonbuild/meson/issues/1341 https://github.com/mesonbuild/meson/issues/1345 https://github.com/mesonbuild/meson/issues/1349
Diffstat (limited to 'run_tests.py')
-rwxr-xr-xrun_tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/run_tests.py b/run_tests.py
index 005717e..6282440 100755
--- a/run_tests.py
+++ b/run_tests.py
@@ -24,7 +24,7 @@ if __name__ == '__main__':
if mesonlib.is_linux():
returncode += subprocess.call([sys.executable, 'run_unittests.py', '-v'])
else:
- returncode += subprocess.call([sys.executable, 'run_unittests.py', '-v', 'InternalTests'])
+ returncode += subprocess.call([sys.executable, 'run_unittests.py', '-v', 'InternalTests', 'AllPlatformTests'])
# 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')