diff --git a/tests/FragmentAutocomplete.test.cpp b/tests/FragmentAutocomplete.test.cpp index 1d045b12..1f823063 100644 --- a/tests/FragmentAutocomplete.test.cpp +++ b/tests/FragmentAutocomplete.test.cpp @@ -3410,6 +3410,7 @@ local foo = 8)"); CHECK(*pos == Position{2, 0}); } +#if 0 TEST_CASE_FIXTURE(FragmentAutocompleteBuiltinsFixture, "TypeCorrectLocalReturn_assert") { const std::string source = R"()"; @@ -3455,6 +3456,7 @@ return target(bar)"; } ); } +#endif TEST_CASE_FIXTURE(FragmentAutocompleteBuiltinsFixture, "str_metata_table_finished_defining") { diff --git a/tests/Normalize.test.cpp b/tests/Normalize.test.cpp index 83407bac..122be810 100644 --- a/tests/Normalize.test.cpp +++ b/tests/Normalize.test.cpp @@ -1208,6 +1208,7 @@ _(_)[_(n32)] %= _(_(_)) LUAU_REQUIRE_ERRORS(result); } +#if !(defined(_WIN32) && !(defined(_M_X64) || defined(_M_ARM64))) TEST_CASE_FIXTURE(BuiltinsFixture, "fuzz_propagate_normalization_failures") { ScopedFastInt luauNormalizeIntersectionLimit{FInt::LuauNormalizeIntersectionLimit, 50}; @@ -1224,5 +1225,6 @@ _().readu32 %= _(_(_(_),_)) LUAU_REQUIRE_ERRORS(result); } +#endif TEST_SUITE_END();