summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Moroz <mmoroz@chromium.org>2018-07-25 18:34:20 +0000
committerMax Moroz <mmoroz@chromium.org>2018-07-25 18:34:20 +0000
commitd0b67d3094132b2624ba612ae8357269698798d7 (patch)
treecb9b3e2abc76643f0a28cfc0e9062a68ff2218b4
parent3f26278f4933c190ef70b1c23229bd806474b360 (diff)
[libFuzzer] Disable handle-unstable.test for ARM and delete duplicated test file.
Summary: This change should fix the failures mentioned in https://reviews.llvm.org/D49684#1175245 Reviewers: kevinwkt, morehouse, metzman Reviewed By: kevinwkt, morehouse Subscribers: kristof.beyls, delcypher, chrib, #sanitizers, llvm-commits, kcc Differential Revision: https://reviews.llvm.org/D49810 git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@337949 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/fuzzer/handle-unstable.test3
-rw-r--r--test/fuzzer/handle_unstable_minunstable.test12
2 files changed, 3 insertions, 12 deletions
diff --git a/test/fuzzer/handle-unstable.test b/test/fuzzer/handle-unstable.test
index 2116d9a5e..798ee2dc0 100644
--- a/test/fuzzer/handle-unstable.test
+++ b/test/fuzzer/handle-unstable.test
@@ -1,3 +1,6 @@
+# Tests -handle_unstable
+UNSUPPORTED: aarch64
+
RUN: %cpp_compiler %S/PrintUnstableStatsTest.cpp -o %t-HandleUnstableTest
; Normal
diff --git a/test/fuzzer/handle_unstable_minunstable.test b/test/fuzzer/handle_unstable_minunstable.test
deleted file mode 100644
index fa082c4c5..000000000
--- a/test/fuzzer/handle_unstable_minunstable.test
+++ /dev/null
@@ -1,12 +0,0 @@
-RUN: %cpp_compiler %S/PrintUnstableStatsTest.cpp -o %t-HandleUnstableMinUnstableTest
-RUN: %run %t-HandleUnstableMinUnstableTest -print_coverage=1 -handle_unstable=1 -runs=100000 2>&1 | FileCheck %s --check-prefix=UNSTABLE
-UNSTABLE-NOT: ini0()
-UNSTABLE-NOT: ini1()
-UNSTABLE-NOT: ini2()
-
-RUN: %run %t-HandleUnstableMinUnstableTest -print_coverage=1 -runs=100000 2>&1 | FileCheck %s --check-prefix=NORMAL
-NORMAL-DAG: ini0()
-NORMAL-DAG: ini1()
-NORMAL-DAG: ini2()
-
-