From: Luca Boccassi Date: Sat, 19 Dec 2020 18:41:03 +0000 (+0000) Subject: test: use deny-list in run-integration-tests.sh X-Git-Tag: v248-rc1~462^2~3 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b382b8de1eccd6f8893673df3f9ccebe23adc4ce;p=thirdparty%2Fsystemd.git test: use deny-list in run-integration-tests.sh The old env var doesn't seem to be used anywhere, and the script currently doesn't work, so it seems safe to change immediately --- diff --git a/test/run-integration-tests.sh b/test/run-integration-tests.sh index 04b8385be9a..2d3f0ee94f4 100755 --- a/test/run-integration-tests.sh +++ b/test/run-integration-tests.sh @@ -30,10 +30,10 @@ if [ $do_clean = 1 ]; then [ -n "$args_no_clean" ] || exit 0 fi -pass_blacklist() { - for marker in $BLACKLIST_MARKERS; do +pass_deny_list() { + for marker in $DENY_LIST_MARKERS $BLACKLIST_MARKERS; do if [ -f "$1/$marker" ]; then - echo "========== BLACKLISTED: $1 ($marker) ==========" + echo "========== DENY-LISTED: $1 ($marker) ==========" return 1 fi done @@ -43,7 +43,7 @@ pass_blacklist() { for TEST in TEST-??-* ; do COUNT=$(($COUNT+1)) - pass_blacklist $TEST || continue + pass_deny_list $TEST || continue start=$(date +%s) echo -e "\n--x-- Running $TEST --x--"