[libFuzzer] XFAIL a few libFuzzer tests on iOS.

NFC for now.

Differential Revision: https://reviews.llvm.org/D47284

llvm-svn: 333240
This commit is contained in:
George Karpenkov 2018-05-24 23:55:52 +00:00
parent e7e3fc26ee
commit 0dcb6902f1
8 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,4 @@
XFAIL: ios
RUN: %no_fuzzer_cpp_compiler %S/AFLDriverTest.cpp %libfuzzer_src/afl/afl_driver.cpp -o %t-AFLDriverTest
; Test that not specifying an extra stats file isn't broken.

View File

@ -1,3 +1,4 @@
XFAIL: ios
UNSUPPORTED: freebsd
RUN: %no_fuzzer_cpp_compiler %S/AFLDriverTest.cpp %libfuzzer_src/afl/afl_driver.cpp -o %t-AFLDriverTest

View File

@ -1,3 +1,4 @@
XFAIL: ios
RUN: %cpp_compiler %S/CounterTest.cpp -o %t-CounterTest
RUN: not %run %t-CounterTest -max_len=6 -seed=1 -timeout=15 2>&1 | FileCheck %s --check-prefix=COUNTERS

View File

@ -1,3 +1,4 @@
XFAIL: ios
RUN: %cpp_compiler %S/SimpleTest.cpp -o %t-SimpleTest
RUN: not %run %t-SimpleTest -print_pcs=1 -seed=1 2>&1 | FileCheck %s --check-prefix=PCS
PCS-NOT: NEW_PC

View File

@ -1,3 +1,4 @@
XFAIL: ios
RUN: %cpp_compiler %S/FullCoverageSetTest.cpp -o %t-FullCoverageSetTest
RUN: rm -rf %tmp/T1 %tmp/T2

View File

@ -1,4 +1,5 @@
# Check that libFuzzer honors SIGUSR1/SIGUSR2
XFAIL: ios
RUN: rm -rf %t
RUN: mkdir -p %t
RUN: %cpp_compiler %S/SleepOneSecondTest.cpp -o %t/LFSIGUSR

View File

@ -1,3 +1,4 @@
XFAIL: ios
CHECK: BINGO
RUN: %cpp_compiler %S/FullCoverageSetTest.cpp -o %t-FullCoverageSetTest

View File

@ -1,3 +1,4 @@
XFAIL: ios
CHECK: AddressSanitizer: {{FPE|int-divide-by-zero}}
RUN: %cpp_compiler %S/DivTest.cpp -fsanitize-coverage=trace-div -o %t-DivTest
RUN: not %run %t-DivTest -seed=1 -use_value_profile=1 -runs=10000000 2>&1 | FileCheck %s