From 85307f154f7717d310988804d13dd34173dbebb0 Mon Sep 17 00:00:00 2001 From: Thomas Lively Date: Tue, 5 Apr 2022 14:33:53 -0700 Subject: [PATCH] Re-enable a previously flaky type test I don't know what exactly was causing this test to flake, but since it was disabled we added the type fuzzer and fixed a lot of bugs, so I hope it is no longer flaky. If that turns out to be wrong, I can dig deeper. --- test/gtest/type-builder.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/gtest/type-builder.cpp b/test/gtest/type-builder.cpp index 7817939cefe..57f7032c2f0 100644 --- a/test/gtest/type-builder.cpp +++ b/test/gtest/type-builder.cpp @@ -364,7 +364,7 @@ TEST_F(IsorecursiveTest, CanonicalizeUses) { EXPECT_NE(built[4], built[6]); } -TEST_F(IsorecursiveTest, DISABLED_CanonicalizeSelfReferences) { +TEST_F(IsorecursiveTest, CanonicalizeSelfReferences) { TypeBuilder builder(5); // Single self-reference builder[0] = makeStruct(builder, {0});