From: Carl Hetherington Date: Sun, 4 Sep 2022 19:25:33 +0000 (+0200) Subject: Only use --log_level=test_suite when running from cscript. X-Git-Tag: v2.16.25~13 X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=8afad10c394462c66f68ac00698da38c5b0b8721 Only use --log_level=test_suite when running from cscript. --- 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