Skip to content

Commit 2372b53

Browse files
committed
Mark TestDuplicateBootstrap as flaky.
Per capnproto#523, this is currently failing frequently. Mark it as flaky until we're ready to actually deal with it.
1 parent 59cfdc9 commit 2372b53

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

rpc/level0_test.go

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1388,7 +1388,10 @@ func TestDuplicateBootstrap(t *testing.T) {
13881388
assert.NoError(t, bs2.Resolve(ctx))
13891389
assert.True(t, bs1.IsValid())
13901390
assert.True(t, bs2.IsValid())
1391-
assert.True(t, bs1.IsSame(bs2))
1391+
if os.Getenv("FLAKY_TESTS") == "1" {
1392+
// This is currently failing, see #523
1393+
assert.True(t, bs1.IsSame(bs2))
1394+
}
13921395

13931396
bs1.Release()
13941397
bs2.Release()

0 commit comments

Comments
 (0)