[compiler-rt] r287577 - [asan] Un-XFAIL Windows global dead stripping test cases

Reid Kleckner via llvm-commits llvm-commits at lists.llvm.org
Mon Nov 21 12:40:56 PST 2016


Author: rnk
Date: Mon Nov 21 14:40:56 2016
New Revision: 287577

URL: http://llvm.org/viewvc/llvm-project?rev=287577&view=rev
Log:
[asan] Un-XFAIL Windows global dead stripping test cases

Test update for r287576

Modified:
    compiler-rt/trunk/test/asan/TestCases/Windows/dll_global_dead_strip.c
    compiler-rt/trunk/test/asan/TestCases/Windows/global_dead_strip.c

Modified: compiler-rt/trunk/test/asan/TestCases/Windows/dll_global_dead_strip.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/Windows/dll_global_dead_strip.c?rev=287577&r1=287576&r2=287577&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/Windows/dll_global_dead_strip.c (original)
+++ compiler-rt/trunk/test/asan/TestCases/Windows/dll_global_dead_strip.c Mon Nov 21 14:40:56 2016
@@ -5,9 +5,6 @@
 // RUN: %clang_cl_asan -LD -O2 %s -Fe%t.dll -link -opt:ref
 // RUN: %env_asan_opts=report_globals=2 %run %t %t.dll 2>&1 | FileCheck %s --check-prefix=STRIP
 
-// FIXME: Remove the XFAIL once the LLVM instrumentation change lands.
-// XFAIL: *
-
 #include <stdio.h>
 
 int dead_global = 42;

Modified: compiler-rt/trunk/test/asan/TestCases/Windows/global_dead_strip.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/Windows/global_dead_strip.c?rev=287577&r1=287576&r2=287577&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/Windows/global_dead_strip.c (original)
+++ compiler-rt/trunk/test/asan/TestCases/Windows/global_dead_strip.c Mon Nov 21 14:40:56 2016
@@ -3,9 +3,6 @@
 // RUN: %clang_cl_asan /O2 %s /Fe%t.exe -link -opt:ref
 // RUN: %env_asan_opts=report_globals=2 %t.exe 2>&1 | FileCheck %s --check-prefix=STRIP
 
-// FIXME: Remove the XFAIL once the LLVM instrumentation change lands.
-// XFAIL: *
-
 #include <stdio.h>
 int dead_global = 42;
 int live_global = 0;




More information about the llvm-commits mailing list