diff options
Diffstat (limited to 'run_tests.py')
-rwxr-xr-x | run_tests.py | 2 |
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') |