[compiler-rt] r287236 - [asan] Update the tests as Mach-O metadata liveness tracking is on by default

Anna Zaks via llvm-commits llvm-commits at lists.llvm.org
Thu Nov 17 08:56:12 PST 2016


Author: zaks
Date: Thu Nov 17 10:56:11 2016
New Revision: 287236

URL: http://llvm.org/viewvc/llvm-project?rev=287236&view=rev
Log:
[asan] Update the tests as Mach-O metadata liveness tracking is on by default

This commit reverts r274579.

Modified:
    compiler-rt/trunk/test/asan/TestCases/Darwin/dead-strip.c
    compiler-rt/trunk/test/asan/TestCases/initialization-bug.cc

Modified: compiler-rt/trunk/test/asan/TestCases/Darwin/dead-strip.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/Darwin/dead-strip.c?rev=287236&r1=287235&r2=287236&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/Darwin/dead-strip.c (original)
+++ compiler-rt/trunk/test/asan/TestCases/Darwin/dead-strip.c Thu Nov 17 10:56:11 2016
@@ -6,7 +6,7 @@
 // runtime is able to register globals in the __DATA,__asan_globals section.
 
 // REQUIRES: osx-ld64-live_support
-// RUN: %clang_asan -mmacosx-version-min=10.11 -mllvm -asan-globals-live-support -Xlinker -dead_strip -o %t %s
+// RUN: %clang_asan -mmacosx-version-min=10.11 -Xlinker -dead_strip -o %t %s
 // RUN: llvm-nm -format=posix %t | FileCheck --check-prefix NM-CHECK %s
 // RUN: not %run %t 2>&1 | FileCheck --check-prefix ASAN-CHECK %s
 

Modified: compiler-rt/trunk/test/asan/TestCases/initialization-bug.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/initialization-bug.cc?rev=287236&r1=287235&r2=287236&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/initialization-bug.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/initialization-bug.cc Thu Nov 17 10:56:11 2016
@@ -6,7 +6,7 @@
 // Do not test with optimization -- the error may be optimized away.
 
 // FIXME: https://code.google.com/p/address-sanitizer/issues/detail?id=186
-// XFAIL: darwin,win32
+// XFAIL: win32
 
 // The test is expected to fail on OS X Yosemite and older
 // UNSUPPORTED: osx-no-ld64-live_support




More information about the llvm-commits mailing list