From 58ebda08df1b035a0b49025f7964239e07c4201c Mon Sep 17 00:00:00 2001 From: Jonathan Rajotte Date: Tue, 8 Mar 2022 10:50:14 -0500 Subject: [PATCH] Fix: test for presence of 'root_regression' Signed-off-by: Jonathan Rajotte Change-Id: I790285adc2854eff42a873f10469565334e4cbb5 --- scripts/system-tests/run-test-suites.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 .. -- 2.34.1