aboutsummaryrefslogtreecommitdiff
path: root/mesontest.py
diff options
context:
space:
mode:
Diffstat (limited to 'mesontest.py')
-rwxr-xr-xmesontest.py3
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: