summaryrefslogtreecommitdiff
path: root/test/asan/TestCases/Windows
diff options
context:
space:
mode:
authorReid Kleckner <rnk@google.com>2016-11-21 20:40:56 +0000
committerReid Kleckner <rnk@google.com>2016-11-21 20:40:56 +0000
commitd4f1282ea7d213e7bcc0159b79ec585d136ae957 (patch)
tree22ba2f68db52267fdf991d81d0c5e8b93a761b46 /test/asan/TestCases/Windows
parent2a05c834ed840634ae1247f30179ba90d6255f34 (diff)
[asan] Un-XFAIL Windows global dead stripping test cases
Test update for r287576 git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@287577 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/asan/TestCases/Windows')
-rw-r--r--test/asan/TestCases/Windows/dll_global_dead_strip.c3
-rw-r--r--test/asan/TestCases/Windows/global_dead_strip.c3
2 files changed, 0 insertions, 6 deletions
diff --git a/test/asan/TestCases/Windows/dll_global_dead_strip.c b/test/asan/TestCases/Windows/dll_global_dead_strip.c
index e28d48a1c..2664f5baf 100644
--- a/test/asan/TestCases/Windows/dll_global_dead_strip.c
+++ b/test/asan/TestCases/Windows/dll_global_dead_strip.c
@@ -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;
diff --git a/test/asan/TestCases/Windows/global_dead_strip.c b/test/asan/TestCases/Windows/global_dead_strip.c
index df5f58ab5..e68549050 100644
--- a/test/asan/TestCases/Windows/global_dead_strip.c
+++ b/test/asan/TestCases/Windows/global_dead_strip.c
@@ -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;