Skip to content

Commit

Permalink
common: ignore test-execute coredumps everywhere
Browse files Browse the repository at this point in the history
As they leak from the TEST-02 nspawn container.
  • Loading branch information
mrc0mmand committed Oct 20, 2023
1 parent 9688bca commit 02bbd40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/utils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 02bbd40

Please sign in to comment.