diff options
author | Thomas Lively <7121787+tlively@users.noreply.github.com> | 2022-02-02 18:07:27 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-02 18:07:27 -0800 |
commit | c0d98b51d3f4088f98f6bd09bd2921ffa9b6d344 (patch) | |
tree | f84d596e35ec78000343d12f34ee02add8fe2ca4 | |
parent | 5387c4ec48ba753e44f3b1d92fd43ac366b10b5c (diff) | |
download | binaryen-c0d98b51d3f4088f98f6bd09bd2921ffa9b6d344.tar.gz binaryen-c0d98b51d3f4088f98f6bd09bd2921ffa9b6d344.tar.bz2 binaryen-c0d98b51d3f4088f98f6bd09bd2921ffa9b6d344.zip |
Disable a flaky isorecursion test (#4497)
The IsorecursiveTest.CanonicalizeSelfReferences has been frequently failing on
Windows and MacOS CI. Disable it for now until I can investigate thoroughly.
-rw-r--r-- | test/gtest/type-builder.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/gtest/type-builder.cpp b/test/gtest/type-builder.cpp index b6ed40262..6da080b17 100644 --- a/test/gtest/type-builder.cpp +++ b/test/gtest/type-builder.cpp @@ -350,7 +350,7 @@ TEST_F(IsorecursiveTest, CanonicalizeUses) { EXPECT_NE(built[4], built[6]); } -TEST_F(IsorecursiveTest, CanonicalizeSelfReferences) { +TEST_F(IsorecursiveTest, DISABLED_CanonicalizeSelfReferences) { TypeBuilder builder(5); // Single self-reference builder[0] = makeStruct(builder, {0}); |