[asan] Un-XFAIL Windows global dead stripping test cases
authorReid Kleckner <rnk@google.com>
Mon, 21 Nov 2016 20:40:56 +0000 (20:40 +0000)
committerReid Kleckner <rnk@google.com>
Mon, 21 Nov 2016 20:40:56 +0000 (20:40 +0000)
Test update for r287576

llvm-svn: 287577

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

index e28d48a..2664f5b 100644 (file)
@@ -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;
index df5f58a..e685490 100644 (file)
@@ -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;