diff options
| author | Greg Steuck <greg@nest.cx> | 2022-08-29 12:09:05 +0200 |
|---|---|---|
| committer | Aleksandr Nogikh <wp32pw@gmail.com> | 2022-08-29 12:35:14 +0200 |
| commit | 94da0b6bfbd4fae9ee83e29cd5083e6070367889 (patch) | |
| tree | 4aca562920765691ed7a2bd77c4f0b5edbd4e6e8 /pkg/report | |
| parent | f1bbaaa0bb2a52a3bebb2ac75527a795a8d41a72 (diff) | |
pkg/report: suppress "Broken pipe" panics
They are invalid and we're tired of manually marking them as such.
Diffstat (limited to 'pkg/report')
| -rw-r--r-- | pkg/report/openbsd.go | 1 | ||||
| -rw-r--r-- | pkg/report/testdata/openbsd/report/38 | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/pkg/report/openbsd.go b/pkg/report/openbsd.go index 13e5a5136..77cb98a76 100644 --- a/pkg/report/openbsd.go +++ b/pkg/report/openbsd.go @@ -21,6 +21,7 @@ func ctorOpenbsd(cfg *config) (reporterImpl, []string, error) { suppressions := []string{ "panic: vop_generic_badop", "witness: lock order reversal:\\n(.*\\n)*.*[0-9stnd]+ 0x[0-9a-f]+ inode(.*\\n)*.*lock order .* first seen at", + "panic:.*send disconnect: Broken pipe", } return ctx, suppressions, nil } diff --git a/pkg/report/testdata/openbsd/report/38 b/pkg/report/testdata/openbsd/report/38 new file mode 100644 index 000000000..8ec72f429 --- /dev/null +++ b/pkg/report/testdata/openbsd/report/38 @@ -0,0 +1,4 @@ +TITLE: panic: vop_generic_bclient_loop: send disconnect: Broken pipe +SUPPRESSED: Y + +panic: vop_generic_bclient_loop: send disconnect: Broken pipe
\ No newline at end of file |
