From 02bbd40cca8a55ecb7ee02d404f95206ed19127c Mon Sep 17 00:00:00 2001 From: Frantisek Sumsal Date: Fri, 20 Oct 2023 11:57:01 +0200 Subject: [PATCH] common: ignore test-execute coredumps everywhere As they leak from the TEST-02 nspawn container. --- common/utils.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/utils.sh b/common/utils.sh index 9fa73a6d..20558d7f 100644 --- a/common/utils.sh +++ b/common/utils.sh @@ -365,7 +365,7 @@ coredumpctl_collect() { # systemd-notify - intermittent (and intentional) SIGABRT caused by TEST-59 # auditd - bug in C8S # test(-usr)?-dump - intentional coredumps from systemd-coredump tests in TEST-74 - local exclude_rx="${COREDUMPCTL_EXCLUDE_RX:-/(dhcpcd|bash|sleep|systemd-notify|auditd|test(-usr)?-dump)$}" + local exclude_rx="${COREDUMPCTL_EXCLUDE_RX:-/(dhcpcd|bash|sleep|systemd-notify|auditd|test-execute|test(-usr)?-dump)$}" _log "Excluding coredumps matching '$exclude_rx'" if ! "$coredumpctl_bin" "${args[@]}" -F COREDUMP_EXE | grep -Ev "$exclude_rx" > "$tempfile"; then _log "No relevant coredumps found"