summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Lively <7121787+tlively@users.noreply.github.com>2022-04-05 17:09:20 -0700
committerGitHub <noreply@github.com>2022-04-05 17:09:20 -0700
commit40a998c00eb42b65ddc1d42c1c009690bbd05cca (patch)
tree0df251b6cab11db8543ea946232ecbb02f262069
parentcbc7e0455dcef0a7df6e4ab345626b8e69534f7f (diff)
downloadbinaryen-40a998c00eb42b65ddc1d42c1c009690bbd05cca.tar.gz
binaryen-40a998c00eb42b65ddc1d42c1c009690bbd05cca.tar.bz2
binaryen-40a998c00eb42b65ddc1d42c1c009690bbd05cca.zip
Re-enable a previously flaky type test (#4582)
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.
-rw-r--r--test/gtest/type-builder.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/gtest/type-builder.cpp b/test/gtest/type-builder.cpp
index 7817939ce..57f7032c2 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});