summaryrefslogtreecommitdiff
path: root/test/fuzzer/sigusr.test
diff options
context:
space:
mode:
Diffstat (limited to 'test/fuzzer/sigusr.test')
-rw-r--r--test/fuzzer/sigusr.test16
1 files changed, 0 insertions, 16 deletions
diff --git a/test/fuzzer/sigusr.test b/test/fuzzer/sigusr.test
deleted file mode 100644
index fa477a76eea1..000000000000
--- a/test/fuzzer/sigusr.test
+++ /dev/null
@@ -1,16 +0,0 @@
-# FIXME: Disabled on Windows for now because of reliance on posix only features
-# (eg: export, "&", pkill).
-UNSUPPORTED: darwin, windows
-# Check that libFuzzer honors SIGUSR1/SIGUSR2
-RUN: rm -rf %t
-RUN: mkdir -p %t
-RUN: %cpp_compiler %S/SleepOneSecondTest.cpp -o %t/LFSIGUSR
-
-RUN: %run %t/LFSIGUSR 2> %t/log & export PID=$!
-RUN: sleep 2
-RUN: kill -SIGUSR1 $PID
-RUN: sleep 3
-RUN: cat %t/log | FileCheck %s
-
-CHECK: INFO: signal received, trying to exit gracefully
-CHECK: INFO: libFuzzer: exiting as requested