From b382b8de1eccd6f8893673df3f9ccebe23adc4ce Mon Sep 17 00:00:00 2001 From: Luca Boccassi Date: Sat, 19 Dec 2020 18:41:03 +0000 Subject: [PATCH] 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 --- test/run-integration-tests.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/run-integration-tests.sh b/test/run-integration-tests.sh index 04b8385be9..2d3f0ee94f 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--"