blob: 6de089ba0c90c88896a488d33395567597981893 [file] [log] [blame]
Hans Wennborg2e274592013-08-13 23:38:57 +00001// Don't attempt slash switches on msys bash.
2// REQUIRES: shell-preserves-root
3
4// Note: %s must be preceded by -- or bound to another option, otherwise it may
5// be interpreted as a command-line option, e.g. on Mac where %s is commonly
6// under /Users.
7
8// RUN: %clang_cl /Tc%s -### /link foo bar baz 2>&1 | FileCheck %s
9// CHECK: link.exe
10// CHECK: "foo"
11// CHECK: "bar"
12// CHECK: "baz"