summaryrefslogtreecommitdiffstats
path: root/compiler-rt/test
diff options
context:
space:
mode:
authorRenato Golin <renato.golin@linaro.org>2017-06-05 07:36:02 +0000
committerRenato Golin <renato.golin@linaro.org>2017-06-05 07:36:02 +0000
commit77a12b3972a95dc620a5a6ed8b7513caebb80f35 (patch)
tree4ea71af1387ecdb89adf62c08ef3cd933b959efd /compiler-rt/test
parentcdf840fd383ca981adb93d88bece1c8d6460ea62 (diff)
downloadbcm5719-llvm-77a12b3972a95dc620a5a6ed8b7513caebb80f35.tar.gz
bcm5719-llvm-77a12b3972a95dc620a5a6ed8b7513caebb80f35.zip
Revert "[sanitizer-coverage] test for -fsanitize-coverage=inline-8bit-counters"
Revert "Mark sancov test as unsupported on Darwin" Revert "[LSan] Detect dynamic loader by its base address." This reverts commit r304633. This reverts commit r304673. This reverts commit r304632. Those commit have broken LOTS of ARM/AArch64 bots for two days. llvm-svn: 304699
Diffstat (limited to 'compiler-rt/test')
-rw-r--r--compiler-rt/test/sanitizer_common/TestCases/sanitizer_coverage_inline8bit_counter.cc23
1 files changed, 0 insertions, 23 deletions
diff --git a/compiler-rt/test/sanitizer_common/TestCases/sanitizer_coverage_inline8bit_counter.cc b/compiler-rt/test/sanitizer_common/TestCases/sanitizer_coverage_inline8bit_counter.cc
deleted file mode 100644
index 0da81fc38a7..00000000000
--- a/compiler-rt/test/sanitizer_common/TestCases/sanitizer_coverage_inline8bit_counter.cc
+++ /dev/null
@@ -1,23 +0,0 @@
-// Tests -fsanitize-coverage=inline-8bit-counters
-//
-// REQUIRES: has_sancovcc,stable-runtime
-// UNSUPPORTED: i386-darwin, x86_64-darwin
-//
-// RUN: %clangxx -O0 %s -fsanitize-coverage=inline-8bit-counters 2>&1
-
-#include <stdio.h>
-#include <assert.h>
-
-const char *first_counter;
-
-extern "C"
-void __sanitizer_cov_8bit_counters_init(const char *start, const char *end) {
- printf("INIT: %p %p\n", start, end);
- assert(end - start > 1);
- first_counter = start;
-}
-
-int main() {
- assert(first_counter);
- assert(*first_counter == 1);
-}
OpenPOWER on IntegriCloud