From: Carl Hetherington Date: Mon, 18 May 2020 19:54:55 +0000 (+0200) Subject: Use test_suite log level with --debug so we can see when tests take X-Git-Tag: v2.15.76~22 X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=0c1025064c77026aa8c733746092cb042030fdc7;ds=sidebyside Use test_suite log level with --debug so we can see when tests take long enough to time-out Jenkins. --- diff --git a/run/tests b/run/tests index 13aa1f6e6..d6a3ba15f 100755 --- a/run/tests +++ b/run/tests @@ -6,7 +6,7 @@ export LD_LIBRARY_PATH=build/src/lib:/home/c.hetherington/lib:$LD_LIBRARY_PATH export DCPOMATIC_LINUX_SHARE_PREFIX=`pwd` if [ "$1" == "--debug" ]; then shift; - gdb --args build/test/unit-tests --catch_system_errors=no $* + gdb --args build/test/unit-tests --catch_system_errors=no --log-level=test_suite $* elif [ "$1" == "--backtrace" ]; then shift; gdb -batch -ex "run" -ex "thread apply all bt" -return-child-result --args build/test/unit-tests --catch_system_errors=yes $*