[PATCH] D49011: [libFuzzer] Disable hanging tests on AArch64

Yvan Roux via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Jul 6 01:56:52 PDT 2018


yroux created this revision.
yroux added reviewers: george.karpenkov, kcc.
Herald added a reviewer: javed.absar.
Herald added subscribers: Sanitizers, kristof.beyls.

Disable problematic tests which broke AArch64 bots.
Details available in Bugzilla: https://bugs.llvm.org/show_bug.cgi?id=38034


Repository:
  rCRT Compiler Runtime

https://reviews.llvm.org/D49011

Files:
  test/fuzzer/counters.test
  test/fuzzer/disable-leaks.test
  test/fuzzer/fuzzer-oom.test


Index: test/fuzzer/fuzzer-oom.test
===================================================================
--- test/fuzzer/fuzzer-oom.test
+++ 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
Index: test/fuzzer/disable-leaks.test
===================================================================
--- test/fuzzer/disable-leaks.test
+++ 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
Index: test/fuzzer/counters.test
===================================================================
--- test/fuzzer/counters.test
+++ 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
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D49011.154374.patch
Type: text/x-patch
Size: 1348 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180706/1a38531b/attachment.bin>


More information about the llvm-commits mailing list