Skip to content

Commit 4a2b3b8

Browse files
committed
metamorphic: update error blacklist
We see this error when we close the DB without closing all iterators first (perhaps only if value separation is enabled?). This error indicates that we did not reproduce the original problem when reducing.
1 parent abf8da2 commit 4a2b3b8

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

internal/metamorphic/reduce_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,7 @@ func (r *reducer) try(t *testing.T, ops []string) bool {
163163
// removed important ops.
164164
if err == nil ||
165165
strings.Contains(output.String(), "metamorphic test internal error") ||
166+
strings.Contains(output.String(), "element has outstanding references") ||
166167
strings.Contains(output.String(), "leaked iterators") ||
167168
strings.Contains(output.String(), "leaked snapshots") ||
168169
strings.Contains(output.String(), "test timed out") {

0 commit comments

Comments
 (0)