[docs] Fix build-docs.sh
[llvm-project.git] / compiler-rt / test / fuzzer / sigint.test
blob65bfdeb98e3535f351f2f8810c2959e6ab119b06
1 REQUIRES: msan
2 UNSUPPORTED: arm
4 # Check that libFuzzer exits gracefully under SIGINT with MSan.
5 RUN: rm -rf %t
6 RUN: mkdir -p %t
7 RUN: %msan_compiler %S/SleepOneSecondTest.cpp -o %t/LFSIGINT
9 RUN: %run %t/LFSIGINT 2> %t/log & export PID=$!
10 RUN: sleep 2
11 RUN: kill -SIGINT $PID
12 RUN: sleep 3
13 RUN: cat %t/log | FileCheck %s
15 CHECK: libFuzzer: run interrupted; exiting
16 CHECK-NOT: WARNING: MemorySanitizer