You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
507 B
17 lines
507 B
# 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
|