From d08b46d15a98d71c75b524620dec11a09cf64400 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1szl=C3=B3=20Lang=C3=B3?= Date: Mon, 24 Sep 2018 13:17:04 +0200 Subject: Fix '--skip-list' argument of the test runner script. (#2536) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit JerryScript-DCO-1.0-Signed-off-by: László Langó llango.u-szeged@partner.samsung.com --- tools/runners/run-test-suite.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/runners/run-test-suite.sh b/tools/runners/run-test-suite.sh index 0e082831..b39cb4ae 100755 --- a/tools/runners/run-test-suite.sh +++ b/tools/runners/run-test-suite.sh @@ -53,7 +53,7 @@ fi if [[ "$1" =~ ^--skip-list=.* ]] then SKIP_LIST=${1#--skip-list=} - SKIP_LIST=(${SKIP_LIST//,/ }) + SKIP_LIST=${SKIP_LIST//,/ } shift fi @@ -97,7 +97,7 @@ else fi # Remove the skipped tests from list -for TEST in "${SKIP_LIST[@]}" +for TEST in ${SKIP_LIST} do ( sed -i -r "/$TEST/d" $TEST_FILES ) done -- cgit v1.2.3