From b1f372bbcb9984050cd1ef313665588edcae718d Mon Sep 17 00:00:00 2001 From: Dan Blackwell Date: Tue, 28 Oct 2025 14:23:51 +0000 Subject: [PATCH] [Fuzzer][Test-Only] Re-enable fuzzer-ubsan.test on Darwin This test is now XPASSing due to a linker update on the platform. This patch removes the XFAIL from the test. --- compiler-rt/test/fuzzer/fuzzer-ubsan.test | 3 --- 1 file changed, 3 deletions(-) diff --git a/compiler-rt/test/fuzzer/fuzzer-ubsan.test b/compiler-rt/test/fuzzer/fuzzer-ubsan.test index d22339d72e261..6bc2c38636688 100644 --- a/compiler-rt/test/fuzzer/fuzzer-ubsan.test +++ b/compiler-rt/test/fuzzer/fuzzer-ubsan.test @@ -1,6 +1,3 @@ -// This test currently fails to compile on green.lab.llvm.org (arm) -// XFAIL: system-darwin && target=arm{{.*}} - RUN: %cpp_compiler -fsanitize=undefined -fno-sanitize-recover=all %S/SignedIntOverflowTest.cpp -o %t-SignedIntOverflowTest-Ubsan RUN: not %run %t-SignedIntOverflowTest-Ubsan 2>&1 | FileCheck %s CHECK: runtime error: signed integer overflow: 2147483647 + 1 cannot be represented in type 'int'