Skip to content

Commit

Permalink
common: temporarily filter out gnome-shell coredumps
Browse files Browse the repository at this point in the history
  • Loading branch information
mrc0mmand committed Oct 23, 2023
1 parent 39677c9 commit 8483202
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion common/utils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -359,10 +359,11 @@ coredumpctl_collect() {
# The filter can be overridden using the $COREDUMPCTL_EXCLUDE_RX env variable.
# See also the $COREDUMPCTL_EXCLUDE_MAP at the beginning of this file.
# EXCLUDE_RX:
# gnome-shell - intermittent SEGVs, see https://bugs.archlinux.org/task/80061
# sleep/bash - intentional SIGABRT caused by TEST-57
# systemd-notify - intermittent (and intentional) SIGABRT caused by TEST-59
# test(-usr)?-dump - intentional coredumps from systemd-coredump tests in TEST-74
local exclude_rx="${COREDUMPCTL_EXCLUDE_RX:-/(bash|sleep|systemd-notify|test-execute|test(-usr)?-dump)$}"
local exclude_rx="${COREDUMPCTL_EXCLUDE_RX:-/(bash|gnome-shell|sleep|systemd-notify|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 8483202

Please sign in to comment.