From d2a8dc88ff4b309b67232a79bef3dea013e35cf2 Mon Sep 17 00:00:00 2001 From: Reid Kleckner Date: Wed, 22 Jul 2015 22:39:36 +0000 Subject: [PATCH] [asan] Remove CHECK line for kernel32.dll Windows 8 users report that it isn't present in the address space by default anymore. Fixes PR23773. llvm-svn: 242958 --- .../test/asan/TestCases/Windows/shadow_mapping_failure.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/compiler-rt/test/asan/TestCases/Windows/shadow_mapping_failure.cc b/compiler-rt/test/asan/TestCases/Windows/shadow_mapping_failure.cc index 97cd3d60cdfa..9b83947442ed 100644 --- a/compiler-rt/test/asan/TestCases/Windows/shadow_mapping_failure.cc +++ b/compiler-rt/test/asan/TestCases/Windows/shadow_mapping_failure.cc @@ -13,6 +13,5 @@ int main() { // CHECK: ASan shadow was supposed to be located in the [0x2fff0000-0x{{.*}}ffff] range. // CHECK: Dumping process modules: // CHECK-DAG: 0x{{[0-9a-f]*}}-0x{{[0-9a-f]*}} {{.*}}shadow_mapping_failure -// CHECK-DAG: 0x{{[0-9a-f]*}}-0x{{[0-9a-f]*}} {{.*}}kernel32.dll // CHECK-DAG: 0x{{[0-9a-f]*}}-0x{{[0-9a-f]*}} {{.*}}ntdll.dll }