[compiler-rt] [asan][test][MSVC] Disabling test on MSVC x86 because of optimized builds (PR #125871)

Zack Johnson via llvm-commits llvm-commits at lists.llvm.org
Wed Feb 5 07:31:29 PST 2025


https://github.com/zacklj89 created https://github.com/llvm/llvm-project/pull/125871

Including #124987, we have failures on Windows on x86 with `/O2` builds, similar to Darwin. This disables the test for MSVC-x86.

>From 6261428e3865f9f8f794d766a09bd8dfb5bdb7bd Mon Sep 17 00:00:00 2001
From: Zack Johnson <zajohnson at microsoft.com>
Date: Wed, 5 Feb 2025 10:22:09 -0500
Subject: [PATCH] Disabling test on MSVC x86 because of optimized builds

---
 .../test/asan/TestCases/suppressions-alloc-dealloc-mismatch.cpp  | 1 +
 1 file changed, 1 insertion(+)

diff --git a/compiler-rt/test/asan/TestCases/suppressions-alloc-dealloc-mismatch.cpp b/compiler-rt/test/asan/TestCases/suppressions-alloc-dealloc-mismatch.cpp
index 6ab796b1c76a69..67cb7e9827b0e3 100644
--- a/compiler-rt/test/asan/TestCases/suppressions-alloc-dealloc-mismatch.cpp
+++ b/compiler-rt/test/asan/TestCases/suppressions-alloc-dealloc-mismatch.cpp
@@ -12,6 +12,7 @@
 // FIXME: atos does not work for inlined functions, yet llvm-symbolizer
 // does not always work with debug info on Darwin.
 // UNSUPPORTED: darwin
+// UNSUPPORTED: target={{.*windows-msvc.*}} && asan-32-bits
 
 #include <stdio.h>
 #include <stdlib.h>



More information about the llvm-commits mailing list