[compiler-rt] r336446 - [libFuzzer] Disable hanging tests on AArch64
Yvan Roux via llvm-commits
llvm-commits at lists.llvm.org
Fri Jul 6 10:06:01 PDT 2018
Author: yroux
Date: Fri Jul 6 10:06:01 2018
New Revision: 336446
URL: http://llvm.org/viewvc/llvm-project?rev=336446&view=rev
Log:
[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
Modified:
compiler-rt/trunk/test/fuzzer/counters.test
compiler-rt/trunk/test/fuzzer/disable-leaks.test
compiler-rt/trunk/test/fuzzer/fuzzer-oom.test
Modified: compiler-rt/trunk/test/fuzzer/counters.test
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/fuzzer/counters.test?rev=336446&r1=336445&r2=336446&view=diff
==============================================================================
--- compiler-rt/trunk/test/fuzzer/counters.test (original)
+++ compiler-rt/trunk/test/fuzzer/counters.test Fri Jul 6 10:06:01 2018
@@ -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
Modified: compiler-rt/trunk/test/fuzzer/disable-leaks.test
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/fuzzer/disable-leaks.test?rev=336446&r1=336445&r2=336446&view=diff
==============================================================================
--- compiler-rt/trunk/test/fuzzer/disable-leaks.test (original)
+++ compiler-rt/trunk/test/fuzzer/disable-leaks.test Fri Jul 6 10:06:01 2018
@@ -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
Modified: compiler-rt/trunk/test/fuzzer/fuzzer-oom.test
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/fuzzer/fuzzer-oom.test?rev=336446&r1=336445&r2=336446&view=diff
==============================================================================
--- compiler-rt/trunk/test/fuzzer/fuzzer-oom.test (original)
+++ compiler-rt/trunk/test/fuzzer/fuzzer-oom.test Fri Jul 6 10:06:01 2018
@@ -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
More information about the llvm-commits
mailing list