[compiler-rt] 2f302ef - [sanitizer] Disabled test for DLLs

Vitaly Buka via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 6 19:33:13 PST 2023


Author: Vitaly Buka
Date: 2023-03-06T19:32:57-08:00
New Revision: 2f302ef6f869db0da647955799c864abb2c395ad

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

LOG: [sanitizer] Disabled test for DLLs

Similar to compiler-rt/test/asan/TestCases/default_options.cpp

Added: 
    

Modified: 
    compiler-rt/test/asan/TestCases/report_error_summary.cpp

Removed: 
    


################################################################################
diff  --git a/compiler-rt/test/asan/TestCases/report_error_summary.cpp b/compiler-rt/test/asan/TestCases/report_error_summary.cpp
index f9d0310bf62a..c462b6bbfc9d 100644
--- a/compiler-rt/test/asan/TestCases/report_error_summary.cpp
+++ b/compiler-rt/test/asan/TestCases/report_error_summary.cpp
@@ -1,5 +1,8 @@
 // RUN: %clangxx_asan -O0 %s -o %t && not %run %t 2>&1 | FileCheck %s
 
+// FIXME: Doesn't work with DLLs
+// XFAIL: win32-dynamic-asan
+
 #include <stdio.h>
 
 extern "C" void __sanitizer_report_error_summary(const char *summary) {


        


More information about the llvm-commits mailing list