[compiler-rt] XFAIL malloc_zone.cpp for darwin/lsan (PR #133187)
Mariusz Borsa via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 26 17:56:27 PDT 2025
https://github.com/wrotki created https://github.com/llvm/llvm-project/pull/133187
The malloc_zone.cpp test currently fails on Darwin hosts, in SanitizerCommon
tests with lsan enabled.
Need to XFAIL this test to buy time to investigate this failure. Also
we're trying to bring the number of test failing on Darwin bots to 0, to
get clearer signal of any new failures.
rdar://145873843
>From 6b11d90396717e4946d36bc93cacc87833a43b33 Mon Sep 17 00:00:00 2001
From: Mariusz Borsa <m_borsa at apple.com>
Date: Wed, 26 Mar 2025 15:13:28 -0700
Subject: [PATCH] XFAIL malloc_zone.cpp for darwin/lsan
The malloc_zone.cpp test currently fails on Darwin hosts, in SanitizerCommon
tests with lsan enabled.
Need to XFAIL this test to buy time to investigate this failure. Also
we're trying to bring the number of test failing on Darwin bots to 0, to
get clearer signal of any new failures.
rdar://145873843
---
.../test/sanitizer_common/TestCases/Darwin/malloc_zone.cpp | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/compiler-rt/test/sanitizer_common/TestCases/Darwin/malloc_zone.cpp b/compiler-rt/test/sanitizer_common/TestCases/Darwin/malloc_zone.cpp
index e68e93129be2f..158f788056f01 100644
--- a/compiler-rt/test/sanitizer_common/TestCases/Darwin/malloc_zone.cpp
+++ b/compiler-rt/test/sanitizer_common/TestCases/Darwin/malloc_zone.cpp
@@ -17,8 +17,8 @@
// UBSan does not install a malloc zone.
// XFAIL: ubsan
//
-// Curently fails on darwin/lsan rdar://145873843
-// XFAIL: darwin && lsan
+// Curently fails on darwin/lsan
+// XFAIL: (darwin && lsan) || rdar145873843
#include <malloc/malloc.h>
#include <stdlib.h>
More information about the llvm-commits
mailing list