forked from OSchip/llvm-project
[libFuzzer] Mark several tests UNSUPPORTED for aarch64.
Now that check-fuzzer runs as part of check-all, some aarch64 bots had tests failing. llvm-svn: 335639
This commit is contained in:
parent
3bbf789003
commit
0ab788e271
|
@ -1,3 +1,4 @@
|
|||
UNSUPPORTED: aarch64
|
||||
RUN: %cpp_compiler -mllvm -use-unknown-locations=Disable %S/NullDerefTest.cpp -o %t-NullDerefTest
|
||||
RUN: %cpp_compiler -mllvm -use-unknown-locations=Disable %S/DSO1.cpp -fPIC %ld_flags_rpath_so1 -shared -o %dynamiclib1
|
||||
RUN: %cpp_compiler -mllvm -use-unknown-locations=Disable %S/DSO2.cpp -fPIC %ld_flags_rpath_so2 -shared -o %dynamiclib2
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
XFAIL: ios
|
||||
UNSUPPORTED: aarch64
|
||||
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
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
UNSUPPORTED: darwin
|
||||
UNSUPPORTED: darwin, aarch64
|
||||
RUN: %cpp_compiler %S/PrintFuncTest.cpp -o %t
|
||||
RUN: %run %t -seed=1 -runs=100000 2>&1 | FileCheck %s
|
||||
RUN: %run %t -seed=1 -runs=100000 -print_funcs=0 2>&1 | FileCheck %s --check-prefix=NO
|
||||
|
|
|
@ -2,7 +2,8 @@
|
|||
#
|
||||
# TODO: don't require linux.
|
||||
# REQUIRES: linux
|
||||
#
|
||||
UNSUPPORTED: aarch64
|
||||
|
||||
RUN: %cpp_compiler %S/OnlySomeBytesTest.cpp -o %t-exe
|
||||
|
||||
RUN: %t-exe -runs=100 2>&1 | FileCheck %s --check-prefix=FOCUS_NONE
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
// FIXME: This test infinite loops on darwin because it crashes
|
||||
// printing a stack trace repeatedly
|
||||
UNSUPPORTED: darwin
|
||||
UNSUPPORTED: darwin, aarch64
|
||||
|
||||
RUN: %cpp_compiler %S/TraceMallocThreadedTest.cpp -o \
|
||||
RUN: %t-TraceMallocThreadedTest
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
XFAIL: ios
|
||||
UNSUPPORTED: aarch64
|
||||
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
|
||||
|
|
Loading…
Reference in New Issue