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=.* ]]
|
if [[ "$1" =~ ^--skip-list=.* ]]
|
||||||
then
|
then
|
||||||
SKIP_LIST=${1#--skip-list=}
|
SKIP_LIST=${1#--skip-list=}
|
||||||
SKIP_LIST=(${SKIP_LIST//,/ })
|
SKIP_LIST=${SKIP_LIST//,/ }
|
||||||
shift
|
shift
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -97,7 +97,7 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# Remove the skipped tests from list
|
# Remove the skipped tests from list
|
||||||
for TEST in "${SKIP_LIST[@]}"
|
for TEST in ${SKIP_LIST}
|
||||||
do
|
do
|
||||||
( sed -i -r "/$TEST/d" $TEST_FILES )
|
( sed -i -r "/$TEST/d" $TEST_FILES )
|
||||||
done
|
done
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user