|
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" |
| 1 | +// RUN: touch %t.a |
| 2 | +// RUN: %clang -target i686-windows-gnu %s -### -fsanitize=address -lcomponent %/t.a 2>&1 | FileCheck --check-prefixes=ASAN-ALL,ASAN-I686 -DINPUT=%/t.a %s |
| 3 | +// RUN: %clang -target x86_64-windows-gnu %s -### -fsanitize=address -lcomponent %/t.a 2>&1 | FileCheck --check-prefixes=ASAN-ALL,ASAN-X86_64 -DINPUT=%/t.a %s |
| 4 | +// |
| 5 | +// ASAN-ALL-NOT:"-l{{[^"]+"]}}" |
| 6 | +// ASAN-ALL-NOT:"[[INPUT]]" |
| 7 | +// ASAN-I686: "{{[^"]*}}libclang_rt.asan_dynamic-i386.dll.a" |
| 8 | +// ASAN-X86_64: "{{[^"]*}}libclang_rt.asan_dynamic-x86_64.dll.a" |
| 9 | +// ASAN-ALL: "-lcomponent" |
| 10 | +// ASAN-ALL: "[[INPUT]]" |
| 11 | +// ASAN-I686: "{{[^"]*}}libclang_rt.asan_dynamic-i386.dll.a" |
| 12 | +// ASAN-I686: "{{[^"]*}}libclang_rt.asan_dynamic_runtime_thunk-i386.a" |
| 13 | +// ASAN-I686: "--require-defined" "___asan_seh_interceptor" |
| 14 | +// ASAN-I686: "--whole-archive" "{{[^"]*}}libclang_rt.asan_dynamic_runtime_thunk-i386.a" "--no-whole-archive" |
| 15 | +// ASAN-X86_64: "{{[^"]*}}libclang_rt.asan_dynamic-x86_64.dll.a" |
9 | 16 | // ASAN-X86_64: "{{[^"]*}}libclang_rt.asan_dynamic_runtime_thunk-x86_64.a"
|
10 | 17 | // 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" |
| 18 | +// ASAN-X86_64: "--whole-archive" "{{[^"]*}}libclang_rt.asan_dynamic_runtime_thunk-x86_64.a" "--no-whole-archive" |
12 | 19 |
|
13 | 20 | // RUN: %clang -target x86_64-windows-gnu %s -### -fsanitize=vptr
|
0 commit comments