summaryrefslogtreecommitdiff
path: root/lib/asan/tests
diff options
context:
space:
mode:
authorBill Seurer <seurer@linux.vnet.ibm.com>2017-01-25 16:03:27 +0000
committerBill Seurer <seurer@linux.vnet.ibm.com>2017-01-25 16:03:27 +0000
commite4240e6ccb6aa1793a19f830c0239a63ce74e643 (patch)
treec25be278aa09a5a22899ae12d2f6c562f9c4dc9e /lib/asan/tests
parentc636e2e512d89fba8a2ef593377316fd24fcc158 (diff)
[powerpc] deactivate ThreadedOneSizeMallocStressTest asan test on powerpc64
This has not reliably worked on powerpc since r279664. Re-enable this once the problem is tracked down and fixed. git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@293066 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/asan/tests')
-rw-r--r--lib/asan/tests/asan_noinst_test.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/asan/tests/asan_noinst_test.cc b/lib/asan/tests/asan_noinst_test.cc
index 2a3a096c4..b3a235e47 100644
--- a/lib/asan/tests/asan_noinst_test.cc
+++ b/lib/asan/tests/asan_noinst_test.cc
@@ -210,6 +210,10 @@ void *ThreadedOneSizeMallocStress(void *unused) {
return NULL;
}
+#ifndef __powerpc64__
+// FIXME: This has not reliably worked on powerpc since r279664. Re-enable
+// this once the problem is tracked down and fixed.
+
TEST(AddressSanitizer, ThreadedOneSizeMallocStressTest) {
const int kNumThreads = 4;
pthread_t t[kNumThreads];
@@ -220,6 +224,7 @@ TEST(AddressSanitizer, ThreadedOneSizeMallocStressTest) {
PTHREAD_JOIN(t[i], 0);
}
}
+#endif
TEST(AddressSanitizer, ShadowRegionIsPoisonedTest) {
using __asan::kHighMemEnd;