[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 10:55:36 PST 2025
https://github.com/zacklj89 updated https://github.com/llvm/llvm-project/pull/125871
>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 1/2] 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>
>From 3570d15e56f806fd62d36c789ebe7086f042fde2 Mon Sep 17 00:00:00 2001
From: Zack Johnson <zajohnson at microsoft.com>
Date: Wed, 5 Feb 2025 13:55:24 -0500
Subject: [PATCH 2/2] Another suppression; add comment mention MSVC-x86
---
.../asan/TestCases/suppressions-alloc-dealloc-mismatch.cpp | 2 +-
compiler-rt/test/asan/TestCases/suppressions-function.cpp | 3 ++-
2 files changed, 3 insertions(+), 2 deletions(-)
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 67cb7e9827b0e3..7f592c83216fd8 100644
--- a/compiler-rt/test/asan/TestCases/suppressions-alloc-dealloc-mismatch.cpp
+++ b/compiler-rt/test/asan/TestCases/suppressions-alloc-dealloc-mismatch.cpp
@@ -10,7 +10,7 @@
// XFAIL: android
// FIXME: atos does not work for inlined functions, yet llvm-symbolizer
-// does not always work with debug info on Darwin.
+// does not always work with debug info on Darwin. Behavior is similar on MSVC x86 outside of /Od.
// UNSUPPORTED: darwin
// UNSUPPORTED: target={{.*windows-msvc.*}} && asan-32-bits
diff --git a/compiler-rt/test/asan/TestCases/suppressions-function.cpp b/compiler-rt/test/asan/TestCases/suppressions-function.cpp
index 22d3dae1f0ef02..c8ed3fd4866dae 100644
--- a/compiler-rt/test/asan/TestCases/suppressions-function.cpp
+++ b/compiler-rt/test/asan/TestCases/suppressions-function.cpp
@@ -11,8 +11,9 @@
// UNSUPPORTED: ios
// FIXME: atos does not work for inlined functions, yet llvm-symbolizer
-// does not always work with debug info on Darwin.
+// does not always work with debug info on Darwin. Behavior is similar on MSVC x86 outside of /Od.
// UNSUPPORTED: darwin
+// UNSUPPORTED: target={{.*windows-msvc.*}} && asan-32-bits
#include <stdio.h>
#include <stdlib.h>
More information about the llvm-commits
mailing list