diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2019-04-20 14:36:16 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-20 14:36:16 +0300 |
commit | ce160e1eab303eb2c876862d948497c0c10ef33a (patch) | |
tree | a0c0d433122aee10fa4f39ec8372feb6feb03677 /run_tests.py | |
parent | 5c85b5028080e74b3a74f9e0d63166c3c3ca15e6 (diff) | |
parent | 744ca13ddb69da337bc19ac0461b769f6f23cfad (diff) | |
download | meson-ce160e1eab303eb2c876862d948497c0c10ef33a.zip meson-ce160e1eab303eb2c876862d948497c0c10ef33a.tar.gz meson-ce160e1eab303eb2c876862d948497c0c10ef33a.tar.bz2 |
Merge pull request #5250 from jon-turney/test-compiler-report
Add a report of compilers used to run_project_tests.py
Diffstat (limited to 'run_tests.py')
-rwxr-xr-x | run_tests.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/run_tests.py b/run_tests.py index d72546b..fb3bc28 100755 --- a/run_tests.py +++ b/run_tests.py @@ -292,7 +292,7 @@ def main(): os.environ.pop('platform') # Run tests print(mlog.bold('Running unittests.').get_text(mlog.colorize_console)) - print() + print(flush=True) # Can't pass arguments to unit tests, so set the backend to use in the environment env = os.environ.copy() env['MESON_UNIT_TEST_BACKEND'] = backend.name @@ -325,7 +325,7 @@ def main(): else: cross_test_args = mesonlib.python_command + ['run_cross_test.py'] print(mlog.bold('Running armhf cross tests.').get_text(mlog.colorize_console)) - print() + print(flush=True) cmd = cross_test_args + ['cross/ubuntu-armhf.txt'] if options.failfast: cmd += ['--failfast'] @@ -334,7 +334,7 @@ def main(): return returncode print(mlog.bold('Running mingw-w64 64-bit cross tests.') .get_text(mlog.colorize_console)) - print() + print(flush=True) cmd = cross_test_args + ['cross/linux-mingw-w64-64bit.txt'] if options.failfast: cmd += ['--failfast'] |