libfuzzer was recently enabled for Arm32 in D112091. A few tests apparently do not work with arm32 so disable them. The list of tests was obtained from https://lab.llvm.org/buildbot/#/builders/190/builds/513 Reviewed By: morehouse Differential Revision: https://reviews.llvm.org/D114312
17 lines
399 B
Plaintext
17 lines
399 B
Plaintext
REQUIRES: msan
|
|
UNSUPPORTED: arm
|
|
|
|
# Check that libFuzzer exits gracefully under SIGINT with MSan.
|
|
RUN: rm -rf %t
|
|
RUN: mkdir -p %t
|
|
RUN: %msan_compiler %S/SleepOneSecondTest.cpp -o %t/LFSIGINT
|
|
|
|
RUN: %run %t/LFSIGINT 2> %t/log & export PID=$!
|
|
RUN: sleep 2
|
|
RUN: kill -SIGINT $PID
|
|
RUN: sleep 3
|
|
RUN: cat %t/log | FileCheck %s
|
|
|
|
CHECK: libFuzzer: run interrupted; exiting
|
|
CHECK-NOT: WARNING: MemorySanitizer
|