[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.

llvm-svn: 293066
This commit is contained in:
Bill Seurer 2017-01-25 16:03:27 +00:00
parent b1706ca107
commit 710e821ddc
1 changed files with 5 additions and 0 deletions

View File

@ -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;