From: Jonathan Rajotte Date: Tue, 8 Mar 2022 15:50:14 +0000 (-0500) Subject: Fix: test for presence of 'root_regression' X-Git-Url: https://git.lttng.org./?a=commitdiff_plain;h=58ebda08df1b035a0b49025f7964239e07c4201c;p=lttng-ci.git Fix: test for presence of 'root_regression' Signed-off-by: Jonathan Rajotte Change-Id: I790285adc2854eff42a873f10469565334e4cbb5 --- diff --git a/scripts/system-tests/run-test-suites.sh b/scripts/system-tests/run-test-suites.sh index e1612aa..86de721 100755 --- a/scripts/system-tests/run-test-suites.sh +++ b/scripts/system-tests/run-test-suites.sh @@ -75,7 +75,7 @@ if [[ "$lttng_version" == "master" ]]; then make --keep-going check || failed_tests=1 # TODO: remove when root regression tests are merged with make check or # in another make command. - if [ -f "./tests/long_regression" ]; then + if [ -f "./tests/root_regression" ]; then cd "./tests" || exit 1 prove --nocolor --verbose --merge --exec '' - < root_regression || failed_tests=1 cd ..