From 182eb2ba3a8e687d0d279d0d33c636c525a71730 Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Wed, 29 Nov 2017 11:48:44 +0000 Subject: mtest: make `meson test --list` return whether there was any test to list --- mesonbuild/mtest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mesonbuild/mtest.py') diff --git a/mesonbuild/mtest.py b/mesonbuild/mtest.py index 6536558..351e45d 100644 --- a/mesonbuild/mtest.py +++ b/mesonbuild/mtest.py @@ -747,6 +747,7 @@ def list_tests(th): tests = th.get_tests() for t in tests: print(th.get_pretty_suite(t)) + return not tests def rebuild_all(wd): if not os.path.isfile(os.path.join(wd, 'build.ninja')): @@ -800,8 +801,7 @@ def run(options): try: th = TestHarness(options) if options.list: - list_tests(th) - return 0 + return list_tests(th) if not options.args: return th.doit() return th.run_special() -- cgit v1.1