From e79f10365cd2e6e2e7a1f7f5eb62e0c108006334 Mon Sep 17 00:00:00 2001 From: Romain Vaillant Date: Thu, 2 Mar 2023 15:26:57 +0100 Subject: [PATCH] archive-core: FILTERS_PATTERNS -> IGNORE_FILTERS --- archive-cores/archive-cores.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/archive-cores/archive-cores.sh b/archive-cores/archive-cores.sh index 7bf027d..946d476 100755 --- a/archive-cores/archive-cores.sh +++ b/archive-cores/archive-cores.sh @@ -35,7 +35,7 @@ is_expected_crash() local bt_full="$1" local bin="$2" - for match in $FILTER_PATTERNS; do + for match in $IGNORE_FILTERS; do if grep -q "$match" "$bt_full"; then echo "Known and expected crash of $bin: $match, skipping" return 0