[libc] Temporarily disable the type trait test affected by issue 132494. (#132501)

This test causes clang to crash due to #132494.
This commit is contained in:
lntue 2025-03-21 21:57:37 -04:00 committed by GitHub
parent 619ba920ef
commit 17b5d6b242
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -334,7 +334,9 @@ TEST(LlvmLibcTypeTraitsTest, is_class) {
// Neither other types.
EXPECT_FALSE((is_class_v<Union>));
EXPECT_FALSE((is_class_v<int>));
EXPECT_FALSE((is_class_v<EnumClass>));
// TODO: Re-enable the test after
// https://github.com/llvm/llvm-project/issues/132494 is fixed.
// EXPECT_FALSE((is_class_v<EnumClass>));
}
TYPED_TEST(LlvmLibcTypeTraitsTest, is_const, UnqualObjectTypes) {