forked from OSchip/llvm-project
[libFuzzer] Disable value profiling tests on ARM
Some seem fragile, some fail, and some just take a really long time to run. It does not seem to make sense to support some subset of value profiling tests. Differential Revision: https://reviews.llvm.org/D53047 llvm-svn: 344105
This commit is contained in:
parent
f28523bb3f
commit
d2f6590285
|
@ -1,3 +1,4 @@
|
||||||
|
UNSUPPORTED: ios
|
||||||
CHECK: BINGO
|
CHECK: BINGO
|
||||||
RUN: %cpp_compiler -fno-sanitize=address %S/SimpleHashTest.cpp -o %t-SimpleHashTest
|
RUN: %cpp_compiler -fno-sanitize=address %S/SimpleHashTest.cpp -o %t-SimpleHashTest
|
||||||
RUN: not %run %t-SimpleHashTest -seed=1 -use_cmp=0 -use_value_profile=1 -runs=100000000 -max_len=64 2>&1 | FileCheck %s
|
RUN: not %run %t-SimpleHashTest -seed=1 -use_cmp=0 -use_value_profile=1 -runs=100000000 -max_len=64 2>&1 | FileCheck %s
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
UNSUPPORTED: ios
|
||||||
CHECK: BINGO
|
CHECK: BINGO
|
||||||
RUN: %cpp_compiler %S/AbsNegAndConstantTest.cpp -o %t-AbsNegAndConstantTest
|
RUN: %cpp_compiler %S/AbsNegAndConstantTest.cpp -o %t-AbsNegAndConstantTest
|
||||||
RUN: not %run %t-AbsNegAndConstantTest -seed=1 -use_cmp=0 -use_value_profile=1 -runs=100000000 2>&1 | FileCheck %s
|
RUN: not %run %t-AbsNegAndConstantTest -seed=1 -use_cmp=0 -use_value_profile=1 -runs=100000000 2>&1 | FileCheck %s
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
XFAIL: ios
|
UNSUPPORTED: ios
|
||||||
UNSUPPORTED: aarch64
|
UNSUPPORTED: aarch64
|
||||||
CHECK: AddressSanitizer: {{FPE|int-divide-by-zero}}
|
CHECK: AddressSanitizer: {{FPE|int-divide-by-zero}}
|
||||||
RUN: %cpp_compiler %S/DivTest.cpp -fsanitize-coverage=trace-div -o %t-DivTest
|
RUN: %cpp_compiler %S/DivTest.cpp -fsanitize-coverage=trace-div -o %t-DivTest
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
UNSUPPORTED: ios
|
||||||
UNSUPPORTED: freebsd
|
UNSUPPORTED: freebsd
|
||||||
CHECK: BINGO
|
CHECK: BINGO
|
||||||
RUN: %cpp_compiler %S/SingleMemcmpTest.cpp -o %t-SingleMemcmpTest
|
RUN: %cpp_compiler %S/SingleMemcmpTest.cpp -o %t-SingleMemcmpTest
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
UNSUPPORTED: ios
|
||||||
CHECK: BINGO
|
CHECK: BINGO
|
||||||
RUN: %cpp_compiler %S/FourIndependentBranchesTest.cpp -o %t-FourIndependentBranchesTest
|
RUN: %cpp_compiler %S/FourIndependentBranchesTest.cpp -o %t-FourIndependentBranchesTest
|
||||||
RUN: not %run %t-FourIndependentBranchesTest -seed=1 -use_cmp=0 -use_value_profile=1 -runs=100000000 2>&1 | FileCheck %s
|
RUN: not %run %t-FourIndependentBranchesTest -seed=1 -use_cmp=0 -use_value_profile=1 -runs=100000000 2>&1 | FileCheck %s
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
UNSUPPORTED: ios
|
||||||
UNSUPPORTED: freebsd
|
UNSUPPORTED: freebsd
|
||||||
CHECK: BINGO
|
CHECK: BINGO
|
||||||
RUN: %cpp_compiler %S/SingleStrcmpTest.cpp -o %t-SingleStrcmpTest
|
RUN: %cpp_compiler %S/SingleStrcmpTest.cpp -o %t-SingleStrcmpTest
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
XFAIL: ios
|
UNSUPPORTED: ios
|
||||||
CHECK: BINGO
|
CHECK: BINGO
|
||||||
RUN: %cpp_compiler %S/SwitchTest.cpp -o %t-SwitchTest
|
RUN: %cpp_compiler %S/SwitchTest.cpp -o %t-SwitchTest
|
||||||
RUN: %cpp_compiler %S/Switch2Test.cpp -o %t-Switch2Test
|
RUN: %cpp_compiler %S/Switch2Test.cpp -o %t-Switch2Test
|
||||||
|
|
Loading…
Reference in New Issue