diff options
author | Luca Boccassi <bluca@debian.org> | 2020-12-19 19:41:03 +0100 |
---|---|---|
committer | Luca Boccassi <bluca@debian.org> | 2020-12-19 22:56:57 +0100 |
commit | b382b8de1eccd6f8893673df3f9ccebe23adc4ce (patch) | |
tree | 43ff985f619c9989ab3d999113e31b83c564ba52 /test/run-integration-tests.sh | |
parent | mkosi: Use --only-changed meson option when installing (diff) | |
download | systemd-b382b8de1eccd6f8893673df3f9ccebe23adc4ce.tar.xz systemd-b382b8de1eccd6f8893673df3f9ccebe23adc4ce.zip |
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
Diffstat (limited to 'test/run-integration-tests.sh')
-rwxr-xr-x | test/run-integration-tests.sh | 8 |
1 files 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--" |