From becbb87553123b288a74a695d5355c87b5f49846 Mon Sep 17 00:00:00 2001 From: Yvan Roux Date: Fri, 6 Jul 2018 17:06:01 +0000 Subject: [PATCH] [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 --- compiler-rt/test/fuzzer/counters.test | 1 + compiler-rt/test/fuzzer/disable-leaks.test | 1 + compiler-rt/test/fuzzer/fuzzer-oom.test | 1 + 3 files changed, 3 insertions(+) diff --git a/compiler-rt/test/fuzzer/counters.test b/compiler-rt/test/fuzzer/counters.test index 1a15378..f75d3a0 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 c153467..1c65884 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 6afc0e6..e82fb47 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 -- 2.7.4