Skip to content

Commit 328cb90

Browse files
rnkIanWood1
authored andcommitted
[clang] Disable libclang abort death test after merging unittests
Death tests are often sensitive to global process state, which is dirtier now that the scope of the test binary has increased significantly. I think the value of this single death test isn't high enough to roll back the gtest binary merging patch, so I'm disabling it. See issue llvm#137855 for the investigation.
1 parent 091a57a commit 328cb90

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

clang/unittests/libclang/CrashTests/LibclangCrashTest.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ TEST_F(LibclangParseTest, InstallAbortingLLVMFatalErrorHandler) {
2323
"");
2424
}
2525

26-
TEST_F(LibclangParseTest, UninstallAbortingLLVMFatalErrorHandler) {
26+
// FIXME: Re-enable after Mac-AArch64 signpost crash issues are debugged.
27+
TEST_F(LibclangParseTest, DISABLED_UninstallAbortingLLVMFatalErrorHandler) {
2728
clang_toggleCrashRecovery(0);
2829
clang_install_aborting_llvm_fatal_error_handler();
2930
clang_uninstall_llvm_fatal_error_handler();

0 commit comments

Comments
 (0)