[asan] disable BuiltinLongJmpTest on PowerPC

llvm-svn: 181890
This commit is contained in:
Kostya Serebryany 2013-05-15 15:01:14 +00:00
parent 9dc096c8e6
commit 2b824f3575
1 changed files with 4 additions and 1 deletions

View File

@ -567,7 +567,10 @@ TEST(AddressSanitizer, LongJmpTest) {
}
}
#if not defined(__ANDROID__)
#if !defined(__ANDROID__) && \
!defined(__powerpc64__) && !defined(__powerpc__)
// Does not work on Power:
// https://code.google.com/p/address-sanitizer/issues/detail?id=185
TEST(AddressSanitizer, BuiltinLongJmpTest) {
static jmp_buf buf;
if (!__builtin_setjmp((void**)buf)) {