From 2fa885202f9f957a177198bf687b579b9dce1643 Mon Sep 17 00:00:00 2001 From: Martin Turski Date: Thu, 2 Feb 2023 04:43:58 +0100 Subject: [PATCH] - fix running (local) tests from repository folders that contain white-space in them (reliability improvement for CI) --- buildroot/bin/run_tests | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildroot/bin/run_tests b/buildroot/bin/run_tests index 26284fa69330..9a03be3cc734 100755 --- a/buildroot/bin/run_tests +++ b/buildroot/bin/run_tests @@ -67,7 +67,7 @@ else printf "\033[0;32mMatching test \033[0m#$3\033[0;32m: '\033[0m$test_name\033[0;32m'\n" fi fi - $TESTS/$2 $1 $2 "$test_name" + "$TESTS/$2" $1 $2 "$test_name" if [[ $GIT_RESET_HARD == "true" ]]; then git reset --hard HEAD else