[compiler-rt] d7b34d0 - msan: disble CHECK test on powerpc64

Dmitry Vyukov via llvm-commits llvm-commits at lists.llvm.org
Mon Oct 25 10:38:32 PDT 2021


Author: Dmitry Vyukov
Date: 2021-10-25T19:38:27+02:00
New Revision: d7b34d0b0db2b21eeb4d496fa96e1fa3f695114d

URL: https://github.com/llvm/llvm-project/commit/d7b34d0b0db2b21eeb4d496fa96e1fa3f695114d
DIFF: https://github.com/llvm/llvm-project/commit/d7b34d0b0db2b21eeb4d496fa96e1fa3f695114d.diff

LOG: msan: disble CHECK test on powerpc64

It seems that CHECK terminates the process with 0 status on powerpc64:
https://reviews.llvm.org/D112440#3084251
Disable the test for now.

Reviewed By: melver

Differential Revision: https://reviews.llvm.org/D112455

Added: 
    

Modified: 
    compiler-rt/lib/sanitizer_common/sanitizer_termination.cpp

Removed: 
    


################################################################################
diff  --git a/compiler-rt/lib/sanitizer_common/sanitizer_termination.cpp b/compiler-rt/lib/sanitizer_common/sanitizer_termination.cpp
index f0a79b6ee466..6a54734353c5 100644
--- a/compiler-rt/lib/sanitizer_common/sanitizer_termination.cpp
+++ b/compiler-rt/lib/sanitizer_common/sanitizer_termination.cpp
@@ -84,7 +84,6 @@ void NORETURN CheckFailed(const char *file, int line, const char *cond,
   }
   if (CheckUnwindCallback)
     CheckUnwindCallback();
-  Trap();
   Die();
 }
 


        


More information about the llvm-commits mailing list