diff options
| author | Renato Golin <renato.golin@linaro.org> | 2015-08-07 12:40:05 +0000 |
|---|---|---|
| committer | Renato Golin <renato.golin@linaro.org> | 2015-08-07 12:40:05 +0000 |
| commit | 2ab51bf13a1f6ca96823b755c036227dfd0892f9 (patch) | |
| tree | d6aba0de4d859e2cd72268241bb2ec773d74d703 | |
| parent | a07090f7fa89d6f0f4c1d1ab916d8768715523f6 (diff) | |
| download | bcm5719-llvm-2ab51bf13a1f6ca96823b755c036227dfd0892f9.tar.gz bcm5719-llvm-2ab51bf13a1f6ca96823b755c036227dfd0892f9.zip | |
[ASAN] Disable ManyThreadsTest in AArch64
This test was in an infinite loop in AArch64. We're investigating it
on PR24389, but I'm disabling it for now, so that we continue testing
everything else.
llvm-svn: 244316
| -rw-r--r-- | compiler-rt/lib/asan/tests/asan_test.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/compiler-rt/lib/asan/tests/asan_test.cc b/compiler-rt/lib/asan/tests/asan_test.cc index 6644a094973..ed796d62590 100644 --- a/compiler-rt/lib/asan/tests/asan_test.cc +++ b/compiler-rt/lib/asan/tests/asan_test.cc @@ -335,6 +335,8 @@ void *ManyThreadsWorker(void *a) { return 0; } +#if !defined(__aarch64__) +// FIXME: Infinite loop in AArch64 (PR24389). TEST(AddressSanitizer, ManyThreadsTest) { const size_t kNumThreads = (SANITIZER_WORDSIZE == 32 || ASAN_AVOID_EXPENSIVE_TESTS) ? 30 : 1000; @@ -346,6 +348,7 @@ TEST(AddressSanitizer, ManyThreadsTest) { PTHREAD_JOIN(t[i], 0); } } +#endif TEST(AddressSanitizer, ReallocTest) { const int kMinElem = 5; |

