diff options
author | Yvan Roux <yvan.roux@linaro.org> | 2018-07-06 17:06:01 +0000 |
---|---|---|
committer | Yvan Roux <yvan.roux@linaro.org> | 2018-07-06 17:06:01 +0000 |
commit | becbb87553123b288a74a695d5355c87b5f49846 (patch) | |
tree | 9a6d7570d4f8df09c8b131d16ae6b6509924e83f | |
parent | 2efb847b6fd09dfdc3f3757d1d4175ae5549e822 (diff) | |
download | bcm5719-llvm-becbb87553123b288a74a695d5355c87b5f49846.tar.gz bcm5719-llvm-becbb87553123b288a74a695d5355c87b5f49846.zip |
[libFuzzer] Disable hanging tests on AArch64
Disable problematic tests which broke AArch64 bots.
Details available in Bugzilla: https://bugs.llvm.org/show_bug.cgi?id=38034
Differential Revision: https://reviews.llvm.org/D49011
llvm-svn: 336446
-rw-r--r-- | compiler-rt/test/fuzzer/counters.test | 1 | ||||
-rw-r--r-- | compiler-rt/test/fuzzer/disable-leaks.test | 1 | ||||
-rw-r--r-- | compiler-rt/test/fuzzer/fuzzer-oom.test | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/compiler-rt/test/fuzzer/counters.test b/compiler-rt/test/fuzzer/counters.test index 1a153786be0..f75d3a03783 100644 --- a/compiler-rt/test/fuzzer/counters.test +++ b/compiler-rt/test/fuzzer/counters.test @@ -1,4 +1,5 @@ XFAIL: ios +UNSUPPORTED: aarch64 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 diff --git a/compiler-rt/test/fuzzer/disable-leaks.test b/compiler-rt/test/fuzzer/disable-leaks.test index c153467471e..1c65884e321 100644 --- a/compiler-rt/test/fuzzer/disable-leaks.test +++ b/compiler-rt/test/fuzzer/disable-leaks.test @@ -1,4 +1,5 @@ REQUIRES: lsan +UNSUPPORTED: aarch64 RUN: %cpp_compiler %S/AccumulateAllocationsTest.cpp -o %t-AccumulateAllocationsTest RUN: %run %t-AccumulateAllocationsTest -detect_leaks=1 -runs=100000 2>&1 | FileCheck %s --check-prefix=ACCUMULATE_ALLOCS ACCUMULATE_ALLOCS: INFO: libFuzzer disabled leak detection after every mutation diff --git a/compiler-rt/test/fuzzer/fuzzer-oom.test b/compiler-rt/test/fuzzer/fuzzer-oom.test index 6afc0e63d7e..e82fb47c5be 100644 --- a/compiler-rt/test/fuzzer/fuzzer-oom.test +++ b/compiler-rt/test/fuzzer/fuzzer-oom.test @@ -1,3 +1,4 @@ +UNSUPPORTED: aarch64 RUN: %cpp_compiler %S/OutOfMemoryTest.cpp -o %t-OutOfMemoryTest RUN: %cpp_compiler %S/OutOfMemorySingleLargeMallocTest.cpp -o %t-OutOfMemorySingleLargeMallocTest RUN: %cpp_compiler %S/AccumulateAllocationsTest.cpp -o %t-AccumulateAllocationsTest |