diff --git a/libc/test/src/__support/CPP/type_traits_test.cpp b/libc/test/src/__support/CPP/type_traits_test.cpp index 4b3e48c6a6c0f..85e71f9d90026 100644 --- a/libc/test/src/__support/CPP/type_traits_test.cpp +++ b/libc/test/src/__support/CPP/type_traits_test.cpp @@ -334,7 +334,9 @@ TEST(LlvmLibcTypeTraitsTest, is_class) { // Neither other types. EXPECT_FALSE((is_class_v)); EXPECT_FALSE((is_class_v)); - EXPECT_FALSE((is_class_v)); + // TODO: Re-enable the test after + // https://github.com/llvm/llvm-project/issues/132494 is fixed. + // EXPECT_FALSE((is_class_v)); } TYPED_TEST(LlvmLibcTypeTraitsTest, is_const, UnqualObjectTypes) {