summaryrefslogtreecommitdiff
path: root/test/run-integration-tests.sh
diff options
context:
space:
mode:
authorLuca Boccassi <bluca@debian.org>2020-12-19 18:41:03 +0000
committerLuca Boccassi <bluca@debian.org>2020-12-19 21:56:57 +0000
commitb382b8de1eccd6f8893673df3f9ccebe23adc4ce (patch)
tree43ff985f619c9989ab3d999113e31b83c564ba52 /test/run-integration-tests.sh
parent2234c6a094bb665b69c96f713e313373ec76e377 (diff)
downloadsystemd-b382b8de1eccd6f8893673df3f9ccebe23adc4ce.tar.gz
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-xtest/run-integration-tests.sh8
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--"