[compiler-rt] r336725 - [libFuzzer] Disable dataflow.test on AArch64.

Matt Morehouse via llvm-commits llvm-commits at lists.llvm.org
Tue Jul 10 13:45:36 PDT 2018


Author: morehouse
Date: Tue Jul 10 13:45:36 2018
New Revision: 336725

URL: http://llvm.org/viewvc/llvm-project?rev=336725&view=rev
Log:
[libFuzzer] Disable dataflow.test on AArch64.

Summary:
After my recent change to allow MSan + libFuzzer, the
ExplodeDFSanLabelsTest.cpp test started to overflow the stack with
recursive function SetBytesForLabel() on an AArch64 bot.  Perhaps that
bot has a smaller stack size, or maybe AArch64 has larger stack frames
for this particular function.

Reviewers: kcc, javed.absar

Reviewed By: kcc

Subscribers: kristof.beyls, llvm-commits

Differential Revision: https://reviews.llvm.org/D49150

Modified:
    compiler-rt/trunk/test/fuzzer/dataflow.test

Modified: compiler-rt/trunk/test/fuzzer/dataflow.test
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/fuzzer/dataflow.test?rev=336725&r1=336724&r2=336725&view=diff
==============================================================================
--- compiler-rt/trunk/test/fuzzer/dataflow.test (original)
+++ compiler-rt/trunk/test/fuzzer/dataflow.test Tue Jul 10 13:45:36 2018
@@ -1,5 +1,6 @@
 # Tests the data flow tracer.
 REQUIRES: linux
+UNSUPPORTED: aarch64
 
 # Build the tracer and the test.
 RUN: %no_fuzzer_cpp_compiler -c -fno-sanitize=all -fsanitize=dataflow  %S/../../lib/fuzzer/dataflow/DataFlow.cpp -o  %t-DataFlow.o




More information about the llvm-commits mailing list