[libFuzzer] Mark several tests UNSUPPORTED for aarch64.
authorMatt Morehouse <mascasa@google.com>
Tue, 26 Jun 2018 18:37:09 +0000 (18:37 +0000)
committerMatt Morehouse <mascasa@google.com>
Tue, 26 Jun 2018 18:37:09 +0000 (18:37 +0000)
Now that check-fuzzer runs as part of check-all, some aarch64 bots had
tests failing.

llvm-svn: 335639

compiler-rt/test/fuzzer/coverage.test
compiler-rt/test/fuzzer/fuzzer-printcovpcs.test
compiler-rt/test/fuzzer/print-func.test
compiler-rt/test/fuzzer/target-function.test
compiler-rt/test/fuzzer/trace-malloc-threaded.test
compiler-rt/test/fuzzer/value-profile-div.test

index 7e76fe7..83a4b12 100644 (file)
@@ -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
index 203902e..decf0a7 100644 (file)
@@ -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
index d4920cd..c74da21 100644 (file)
@@ -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
index f39e1ac..afd29ab 100644 (file)
@@ -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
index ab36035..8f972d6 100644 (file)
@@ -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
index a8fb2c1..59cc7c2 100644 (file)
@@ -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