From 8afad10c394462c66f68ac00698da38c5b0b8721 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sun, 4 Sep 2022 21:25:33 +0200 Subject: [PATCH] Only use --log_level=test_suite when running from cscript. --- cscript | 2 +- run/tests | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/cscript b/cscript index 0182feeca..2fe731329 100644 --- a/cscript +++ b/cscript @@ -831,7 +831,7 @@ def test(target, options, test): if target.platform == 'windows': cmd = 'run\\tests ' else: - cmd = 'run/tests ' + cmd = 'run/tests --log_level=test_suite ' if target.debug: cmd += '--backtrace ' if test is not None: diff --git a/run/tests b/run/tests index 1dfd64f4a..301a5df71 100755 --- a/run/tests +++ b/run/tests @@ -51,6 +51,5 @@ elif [ "$1" == "--helgrind" ]; then valgrind --tool="helgrind" build/test/unit-tests $* else ulimit -c unlimited - build/test/unit-tests --catch_system_errors=no --log_level=test_suite $* -# build/test/unit-tests --catch_system_errors=no $* + build/test/unit-tests --catch_system_errors=no $* fi -- 2.30.2