Hans Wennborg | 2e27459 | 2013-08-13 23:38:57 +0000 | [diff] [blame] | 1 | // 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" |