| 1 | // RUN: %clang -target i686-windows-gnu %s -### -fsanitize=address 2>&1 | FileCheck --check-prefix=ASAN-I686 %s |
| 2 | // ASAN-I686: "{{.*}}libclang_rt.asan_dynamic-i386.dll.a" |
| 3 | // ASAN-I686: "{{[^"]*}}libclang_rt.asan_dynamic_runtime_thunk-i386.a" |
| 4 | // ASAN-I686: "--require-defined" "___asan_seh_interceptor" |
| 5 | // ASAN-I686: "--whole-archive" "{{.*}}libclang_rt.asan_dynamic_runtime_thunk-i386.a" "--no-whole-archive" |
| 6 | |
| 7 | // RUN: %clang -target x86_64-windows-gnu %s -### -fsanitize=address 2>&1 | FileCheck --check-prefix=ASAN-X86_64 %s |
| 8 | // ASAN-X86_64: "{{.*}}libclang_rt.asan_dynamic-x86_64.dll.a" |
| 9 | // ASAN-X86_64: "{{[^"]*}}libclang_rt.asan_dynamic_runtime_thunk-x86_64.a" |
| 10 | // ASAN-X86_64: "--require-defined" "__asan_seh_interceptor" |
| 11 | // ASAN-X86_64: "--whole-archive" "{{.*}}libclang_rt.asan_dynamic_runtime_thunk-x86_64.a" "--no-whole-archive" |
| 12 | |