f4a2713ac8
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
33 lines
1.2 KiB
C
33 lines
1.2 KiB
C
// Don't attempt slash switches on msys bash.
|
|
// REQUIRES: shell-preserves-root
|
|
|
|
// Note: %s must be preceded by -- or bound to another option, otherwise it may
|
|
// be interpreted as a command-line option, e.g. on Mac where %s is commonly
|
|
// under /Users.
|
|
|
|
// RUN: %clang_cl /Tc%s -### /link foo bar baz 2>&1 | FileCheck --check-prefix=LINK %s
|
|
// LINK: link.exe
|
|
// LINK: "foo"
|
|
// LINK: "bar"
|
|
// LINK: "baz"
|
|
|
|
// RUN: %clang_cl /Tc%s -### -fsanitize=address 2>&1 | FileCheck --check-prefix=ASAN %s
|
|
// ASAN: link.exe
|
|
// ASAN: "-debug"
|
|
// ASAN: "-incremental:no"
|
|
// ASAN: "{{.*}}clang_rt.asan-i386.lib"
|
|
// ASAN: "{{.*}}cl-link{{.*}}.obj"
|
|
|
|
// RUN: %clang_cl /LD -### /Tc%s 2>&1 | FileCheck --check-prefix=DLL %s
|
|
// RUN: %clang_cl /LDd -### /Tc%s 2>&1 | FileCheck --check-prefix=DLL %s
|
|
// DLL: link.exe
|
|
// "-dll"
|
|
|
|
// RUN: %clang_cl /LD /Tc%s -### -fsanitize=address 2>&1 | FileCheck --check-prefix=ASAN-DLL %s
|
|
// RUN: %clang_cl /LDd /Tc%s -### -fsanitize=address 2>&1 | FileCheck --check-prefix=ASAN-DLL %s
|
|
// ASAN-DLL: link.exe
|
|
// ASAN-DLL: "-dll"
|
|
// ASAN-DLL: "-debug"
|
|
// ASAN-DLL: "-incremental:no"
|
|
// ASAN-DLL: "{{.*}}clang_rt.asan_dll_thunk-i386.lib"
|
|
// ASAN-DLL: "{{.*}}cl-link{{.*}}.obj"
|