mirror of
https://github.com/jerryscript-project/jerryscript.git
synced 2025-12-15 16:29:21 +00:00
Fix '--skip-list' argument of the test runner script. (#2536)
JerryScript-DCO-1.0-Signed-off-by: László Langó llango.u-szeged@partner.samsung.com
This commit is contained in:
parent
0523278a98
commit
d08b46d15a
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user