diff options
author | Michael Hirsch <scivision@users.noreply.github.com> | 2020-05-14 13:55:46 -0400 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2020-06-15 23:33:40 +0300 |
commit | 1ec84c570fe33309a388238c247caac9578b2191 (patch) | |
tree | 56bfdfca91a6c249364721e0a280ad3f2a49572b /run_unittests.py | |
parent | 0a583ac06acb34025adb74efe1c5806bb226c1e8 (diff) | |
download | meson-1ec84c570fe33309a388238c247caac9578b2191.zip meson-1ec84c570fe33309a388238c247caac9578b2191.tar.gz meson-1ec84c570fe33309a388238c247caac9578b2191.tar.bz2 |
run_*tests*.py: print Meson version at start of test suite
on some systems, tests may take over an hour to run--only to find
you might have used an unintended Meson version (e.g. release instead
of dev). This change prints the Meson version at the start of the
run_*tests*.py scripts.
Also, raise SystemExit(main()) is preferred in general over
sys.exit(main())
Diffstat (limited to 'run_unittests.py')
-rwxr-xr-x | run_unittests.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/run_unittests.py b/run_unittests.py index 41ae710..0c2980b 100755 --- a/run_unittests.py +++ b/run_unittests.py @@ -8303,4 +8303,5 @@ def main(): return unittest.main(defaultTest=cases, buffer=True) if __name__ == '__main__': + print('Meson build system', mesonbuild.coredata.version, 'Unit Tests') raise SystemExit(main()) |