[compiler-rt] ba2e49c - [libFuzzer] Mark libFuzzer SIGTRAP test unsupported on windows (#151109)
via llvm-commits
llvm-commits at lists.llvm.org
Tue Jul 29 14:08:05 PDT 2025
Author: Dan Blackwell
Date: 2025-07-29T17:08:02-04:00
New Revision: ba2e49cac9b0d6502c78d4b5fbabbd71417b8898
URL: https://github.com/llvm/llvm-project/commit/ba2e49cac9b0d6502c78d4b5fbabbd71417b8898
DIFF: https://github.com/llvm/llvm-project/commit/ba2e49cac9b0d6502c78d4b5fbabbd71417b8898.diff
LOG: [libFuzzer] Mark libFuzzer SIGTRAP test unsupported on windows (#151109)
This change is based on the UNSUPPORTED mark from the existing sigusr
test
https://github.com/llvm/llvm-project/blob/c59cc542844b5b4a25cd222ad0127ca2e74953ad/compiler-rt/test/fuzzer/sigusr.test#L4
Added:
Modified:
compiler-rt/test/fuzzer/sig-trap.test
Removed:
################################################################################
diff --git a/compiler-rt/test/fuzzer/sig-trap.test b/compiler-rt/test/fuzzer/sig-trap.test
index ee47d2c79e0e2..30d9d47f4d81f 100644
--- a/compiler-rt/test/fuzzer/sig-trap.test
+++ b/compiler-rt/test/fuzzer/sig-trap.test
@@ -1,3 +1,7 @@
+# Check that libFuzzer handles SIGTRAP; disabled on Windows due to reliance on
+# posix only features
+UNSUPPORTED: target={{.*windows.*}}
+
RUN: %cpp_compiler %S/SigTrapTest.cpp -o %t
RUN: not %run %t 2>&1 | FileCheck %s
More information about the llvm-commits
mailing list