[compiler-rt] r335639 - [libFuzzer] Mark several tests UNSUPPORTED for aarch64.
Matt Morehouse via llvm-commits
llvm-commits at lists.llvm.org
Tue Jun 26 11:37:10 PDT 2018
Author: morehouse
Date: Tue Jun 26 11:37:09 2018
New Revision: 335639
URL: http://llvm.org/viewvc/llvm-project?rev=335639&view=rev
Log:
[libFuzzer] Mark several tests UNSUPPORTED for aarch64.
Now that check-fuzzer runs as part of check-all, some aarch64 bots had
tests failing.
Modified:
compiler-rt/trunk/test/fuzzer/coverage.test
compiler-rt/trunk/test/fuzzer/fuzzer-printcovpcs.test
compiler-rt/trunk/test/fuzzer/print-func.test
compiler-rt/trunk/test/fuzzer/target-function.test
compiler-rt/trunk/test/fuzzer/trace-malloc-threaded.test
compiler-rt/trunk/test/fuzzer/value-profile-div.test
Modified: compiler-rt/trunk/test/fuzzer/coverage.test
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/fuzzer/coverage.test?rev=335639&r1=335638&r2=335639&view=diff
==============================================================================
--- compiler-rt/trunk/test/fuzzer/coverage.test (original)
+++ compiler-rt/trunk/test/fuzzer/coverage.test Tue Jun 26 11:37:09 2018
@@ -1,3 +1,4 @@
+UNSUPPORTED: aarch64
RUN: %cpp_compiler -mllvm -use-unknown-locations=Disable %S/NullDerefTest.cpp -o %t-NullDerefTest
RUN: %cpp_compiler -mllvm -use-unknown-locations=Disable %S/DSO1.cpp -fPIC %ld_flags_rpath_so1 -shared -o %dynamiclib1
RUN: %cpp_compiler -mllvm -use-unknown-locations=Disable %S/DSO2.cpp -fPIC %ld_flags_rpath_so2 -shared -o %dynamiclib2
Modified: compiler-rt/trunk/test/fuzzer/fuzzer-printcovpcs.test
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/fuzzer/fuzzer-printcovpcs.test?rev=335639&r1=335638&r2=335639&view=diff
==============================================================================
--- compiler-rt/trunk/test/fuzzer/fuzzer-printcovpcs.test (original)
+++ compiler-rt/trunk/test/fuzzer/fuzzer-printcovpcs.test Tue Jun 26 11:37:09 2018
@@ -1,4 +1,5 @@
XFAIL: ios
+UNSUPPORTED: aarch64
RUN: %cpp_compiler %S/SimpleTest.cpp -o %t-SimpleTest
RUN: not %run %t-SimpleTest -print_pcs=1 -seed=1 2>&1 | FileCheck %s --check-prefix=PCS
PCS-NOT: NEW_PC
Modified: compiler-rt/trunk/test/fuzzer/print-func.test
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/fuzzer/print-func.test?rev=335639&r1=335638&r2=335639&view=diff
==============================================================================
--- compiler-rt/trunk/test/fuzzer/print-func.test (original)
+++ compiler-rt/trunk/test/fuzzer/print-func.test Tue Jun 26 11:37:09 2018
@@ -1,4 +1,4 @@
-UNSUPPORTED: darwin
+UNSUPPORTED: darwin, aarch64
RUN: %cpp_compiler %S/PrintFuncTest.cpp -o %t
RUN: %run %t -seed=1 -runs=100000 2>&1 | FileCheck %s
RUN: %run %t -seed=1 -runs=100000 -print_funcs=0 2>&1 | FileCheck %s --check-prefix=NO
Modified: compiler-rt/trunk/test/fuzzer/target-function.test
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/fuzzer/target-function.test?rev=335639&r1=335638&r2=335639&view=diff
==============================================================================
--- compiler-rt/trunk/test/fuzzer/target-function.test (original)
+++ compiler-rt/trunk/test/fuzzer/target-function.test Tue Jun 26 11:37:09 2018
@@ -2,7 +2,8 @@
#
# TODO: don't require linux.
# REQUIRES: linux
-#
+UNSUPPORTED: aarch64
+
RUN: %cpp_compiler %S/OnlySomeBytesTest.cpp -o %t-exe
RUN: %t-exe -runs=100 2>&1 | FileCheck %s --check-prefix=FOCUS_NONE
Modified: compiler-rt/trunk/test/fuzzer/trace-malloc-threaded.test
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/fuzzer/trace-malloc-threaded.test?rev=335639&r1=335638&r2=335639&view=diff
==============================================================================
--- compiler-rt/trunk/test/fuzzer/trace-malloc-threaded.test (original)
+++ compiler-rt/trunk/test/fuzzer/trace-malloc-threaded.test Tue Jun 26 11:37:09 2018
@@ -1,6 +1,6 @@
// FIXME: This test infinite loops on darwin because it crashes
// printing a stack trace repeatedly
-UNSUPPORTED: darwin
+UNSUPPORTED: darwin, aarch64
RUN: %cpp_compiler %S/TraceMallocThreadedTest.cpp -o \
RUN: %t-TraceMallocThreadedTest
Modified: compiler-rt/trunk/test/fuzzer/value-profile-div.test
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/fuzzer/value-profile-div.test?rev=335639&r1=335638&r2=335639&view=diff
==============================================================================
--- compiler-rt/trunk/test/fuzzer/value-profile-div.test (original)
+++ compiler-rt/trunk/test/fuzzer/value-profile-div.test Tue Jun 26 11:37:09 2018
@@ -1,4 +1,5 @@
XFAIL: ios
+UNSUPPORTED: aarch64
CHECK: AddressSanitizer: {{FPE|int-divide-by-zero}}
RUN: %cpp_compiler %S/DivTest.cpp -fsanitize-coverage=trace-div -o %t-DivTest
RUN: not %run %t-DivTest -seed=1 -use_value_profile=1 -runs=10000000 2>&1 | FileCheck %s
More information about the llvm-commits
mailing list