diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2016-10-16 22:31:04 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2016-11-18 22:04:29 +0200 |
commit | 077741097ab5bfe81d162874f6cc872087869939 (patch) | |
tree | d35c0c620497a9f0fdf4b4d5d21baf85f72c845e /mesontest.py | |
parent | def68cbc50efe65af1b156d2d76fc09a457500b5 (diff) | |
download | meson-077741097ab5bfe81d162874f6cc872087869939.zip meson-077741097ab5bfe81d162874f6cc872087869939.tar.gz meson-077741097ab5bfe81d162874f6cc872087869939.tar.bz2 |
Run all tests if none are specified.
Diffstat (limited to 'mesontest.py')
-rwxr-xr-x | mesontest.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mesontest.py b/mesontest.py index 3ab8ef3..1695faf 100755 --- a/mesontest.py +++ b/mesontest.py @@ -54,6 +54,9 @@ def gdbrun(test): def run(args): datafile = 'meson-private/meson_test_setup.dat' options = parser.parse_args(args) + if len(options.tests) == 0: + # Run basic tests. + return meson_test.run(args + ['meson-private/meson_test_setup.dat']) if options.wrapper != '': wrap = options.wrapper.split(' ') else: |