[compiler-rt] r279614 - [asan] Mark asan-symbolize-sanity-test.cc as UNSUPPORTED on x86_64-apple

Akira Hatanaka via llvm-commits llvm-commits at lists.llvm.org
Tue Aug 23 23:49:28 PDT 2016


Author: ahatanak
Date: Wed Aug 24 01:49:28 2016
New Revision: 279614

URL: http://llvm.org/viewvc/llvm-project?rev=279614&view=rev
Log:
[asan] Mark asan-symbolize-sanity-test.cc as UNSUPPORTED on x86_64-apple
and x86_64h-apple.

Mark the test as UNSUPPORTED to fix a bot that is failing.

http://lab.llvm.org:8080/green/job/clang-stage2-configure-Rlto_check

The bot is failing because asan_symbolize.py cannot tell whether the
reported address is from an x86_64 slice or an x86_64h slice by the
length of the address alone, so it ends up passing the wrong arch to
atos.

rdar://problem/27907889

Modified:
    compiler-rt/trunk/test/asan/TestCases/Posix/asan-symbolize-sanity-test.cc

Modified: compiler-rt/trunk/test/asan/TestCases/Posix/asan-symbolize-sanity-test.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/Posix/asan-symbolize-sanity-test.cc?rev=279614&r1=279613&r2=279614&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/Posix/asan-symbolize-sanity-test.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/Posix/asan-symbolize-sanity-test.cc Wed Aug 24 01:49:28 2016
@@ -9,6 +9,7 @@
 // RUN: %env_asan_opts=symbolize=0 not %run %t 2>&1 | %asan_symbolize | FileCheck %s
 // XFAIL: arm-linux-gnueabi
 // XFAIL: armv7l-unknown-linux-gnueabihf
+// UNSUPPORTED: x86_64h-apple,x86_64-apple
 
 #if !defined(SHARED_LIB)
 #include <dlfcn.h>




More information about the llvm-commits mailing list