[docs] Fix build-docs.sh
[llvm-project.git] / compiler-rt / test / fuzzer / sigusr.test
blobfa477a76eea1ef3e430d2372f9a47ad2df7a656a
1 # FIXME: Disabled on Windows for now because of reliance on posix only features
2 # (eg: export, "&", pkill).
3 UNSUPPORTED: darwin, windows
4 # Check that libFuzzer honors SIGUSR1/SIGUSR2
5 RUN: rm -rf %t
6 RUN: mkdir -p %t
7 RUN: %cpp_compiler %S/SleepOneSecondTest.cpp -o %t/LFSIGUSR
9 RUN: %run %t/LFSIGUSR 2> %t/log & export PID=$!
10 RUN: sleep 2
11 RUN: kill -SIGUSR1 $PID
12 RUN: sleep 3
13 RUN: cat %t/log | FileCheck %s
15 CHECK: INFO: signal received, trying to exit gracefully
16 CHECK: INFO: libFuzzer: exiting as requested