Hans Wennborg | 1907610 | 2013-07-31 20:51:53 +0000 | [diff] [blame] | 1 | // Don't attempt slash switches on msys bash. |
| 2 | // REQUIRES: shell-preserves-root |
| 3 | |
Hans Wennborg | 96d5484 | 2013-08-02 22:24:50 +0000 | [diff] [blame] | 4 | // Note: %s must be preceded by --, otherwise it may be interpreted as a |
| 5 | // command-line option, e.g. on Mac where %s is commonly under /Users. |
Hans Wennborg | 1907610 | 2013-07-31 20:51:53 +0000 | [diff] [blame] | 6 | |
Hans Wennborg | 96d5484 | 2013-08-02 22:24:50 +0000 | [diff] [blame] | 7 | |
| 8 | // Alias options: |
| 9 | |
| 10 | // RUN: %clang_cl /c -### -- %s 2>&1 | FileCheck -check-prefix=C %s |
| 11 | // C: -c |
| 12 | |
| 13 | // RUN: %clang_cl /Dfoo=bar -### -- %s 2>&1 | FileCheck -check-prefix=D %s |
| 14 | // RUN: %clang_cl /D foo=bar -### -- %s 2>&1 | FileCheck -check-prefix=D %s |
| 15 | // D: "-D" "foo=bar" |
| 16 | |
| 17 | // RTTI is on by default; just check that we don't error. |
| 18 | // RUN: %clang_cl /Zs /GR -- %s 2>&1 |
| 19 | |
| 20 | // RUN: %clang_cl /GR- -### -- %s 2>&1 | FileCheck -check-prefix=GR_ %s |
| 21 | // GR_: -fno-rtti |
| 22 | |
| 23 | // RUN: %clang_cl /Imyincludedir -### -- %s 2>&1 | FileCheck -check-prefix=I %s |
| 24 | // RUN: %clang_cl /I myincludedir -### -- %s 2>&1 | FileCheck -check-prefix=I %s |
| 25 | // I: "-I" "myincludedir" |
| 26 | |
| 27 | // RUN: %clang_cl /J -### -- %s 2>&1 | FileCheck -check-prefix=J %s |
| 28 | // J: -fno-signed-char |
| 29 | |
| 30 | // RUN: %clang_cl /Ofoo -### -- %s 2>&1 | FileCheck -check-prefix=O %s |
| 31 | // O: -Ofoo |
| 32 | |
| 33 | // RUN: %clang_cl /Ob0 -### -- %s 2>&1 | FileCheck -check-prefix=Ob0 %s |
| 34 | // Ob0: -fno-inline |
| 35 | |
| 36 | // RUN: %clang_cl /Od -### -- %s 2>&1 | FileCheck -check-prefix=Od %s |
| 37 | // Od: -O0 |
| 38 | |
Hans Wennborg | 56eb4b6 | 2013-08-08 23:44:01 +0000 | [diff] [blame^] | 39 | // RUN: %clang_cl /Oi- /Oi -### -- %s 2>&1 | FileCheck -check-prefix=Oi %s |
| 40 | // Oi-NOT: -fno-builtin |
| 41 | |
| 42 | // RUN: %clang_cl /Oi- -### -- %s 2>&1 | FileCheck -check-prefix=Oi_ %s |
| 43 | // Oi_: -fno-builtin |
| 44 | |
Hans Wennborg | 96d5484 | 2013-08-02 22:24:50 +0000 | [diff] [blame] | 45 | // RUN: %clang_cl /Os -### -- %s 2>&1 | FileCheck -check-prefix=Os %s |
| 46 | // Os: -Os |
| 47 | |
| 48 | // RUN: %clang_cl /Ot -### -- %s 2>&1 | FileCheck -check-prefix=Ot %s |
| 49 | // Ot: -O2 |
| 50 | |
| 51 | // RUN: %clang_cl /Ox -### -- %s 2>&1 | FileCheck -check-prefix=Ox %s |
| 52 | // Ox: -O3 |
| 53 | |
| 54 | // RUN: %clang_cl /Zs /Oy -- %s 2>&1 |
| 55 | |
| 56 | // RUN: %clang_cl /Oy- -### -- %s 2>&1 | FileCheck -check-prefix=Oy_ %s |
| 57 | // Oy_: -mdisable-fp-elim |
| 58 | |
| 59 | // RUN: %clang_cl /P -### -- %s 2>&1 | FileCheck -check-prefix=P %s |
| 60 | // P: -E |
| 61 | |
| 62 | // RUN: %clang_cl /Umymacro -### -- %s 2>&1 | FileCheck -check-prefix=U %s |
| 63 | // RUN: %clang_cl /U mymacro -### -- %s 2>&1 | FileCheck -check-prefix=U %s |
| 64 | // U: "-U" "mymacro" |
| 65 | |
| 66 | // RUN: %clang_cl /W0 -### -- %s 2>&1 | FileCheck -check-prefix=W0 %s |
| 67 | // W0: -w |
| 68 | |
| 69 | // RUN: %clang_cl /W1 -### -- %s 2>&1 | FileCheck -check-prefix=W1 %s |
| 70 | // RUN: %clang_cl /W2 -### -- %s 2>&1 | FileCheck -check-prefix=W1 %s |
| 71 | // RUN: %clang_cl /W3 -### -- %s 2>&1 | FileCheck -check-prefix=W1 %s |
| 72 | // RUN: %clang_cl /W4 -### -- %s 2>&1 | FileCheck -check-prefix=W1 %s |
| 73 | // RUN: %clang_cl /Wall -### -- %s 2>&1 | FileCheck -check-prefix=W1 %s |
| 74 | // W1: -Wall |
| 75 | |
| 76 | // RUN: %clang_cl /WX -### -- %s 2>&1 | FileCheck -check-prefix=WX %s |
| 77 | // WX: -Werror |
| 78 | |
| 79 | // RUN: %clang_cl /WX- -### -- %s 2>&1 | FileCheck -check-prefix=WX_ %s |
| 80 | // WX_: -Wno-error |
| 81 | |
| 82 | // RUN: %clang_cl /w -### -- %s 2>&1 | FileCheck -check-prefix=w %s |
| 83 | // w: -w |
| 84 | |
| 85 | // RUN: %clang_cl /Zs -### -- %s 2>&1 | FileCheck -check-prefix=Zs %s |
| 86 | // Zs: -fsyntax-only |
| 87 | |
| 88 | |
| 89 | // Ignored options. Check that we don't get "unused during compilation" errors. |
| 90 | // (/Zs is for syntax-only, /WX is for -Werror) |
| 91 | // RUN: %clang_cl /Zs /WX /analyze- /errorReport:foo /nologo /Ob1 /Ob2 -- %s |
| 92 | // RUN: %clang_cl /Zs /WX /Zc:forScope /Zc:wchar_t -- %s |
| 93 | |
| 94 | |
| 95 | // Unsupported but parsed options. Check that we don't error on them. |
| 96 | // (/Zs is for syntax-only) |
Hans Wennborg | 2b89a26 | 2013-08-06 22:11:28 +0000 | [diff] [blame] | 97 | // RUN: %clang_cl /Zs /EHsc /Fdfoo /fp:precise /Gd /GL /GL- -- %s 2>&1 |
Hans Wennborg | 56eb4b6 | 2013-08-08 23:44:01 +0000 | [diff] [blame^] | 98 | // RUN: %clang_cl /Zs /Gm /Gm- /GS /Gy /Gy- /GZ -- %s 2>&1 |
Hans Wennborg | 6ee64d5 | 2013-08-06 00:20:31 +0000 | [diff] [blame] | 99 | // RUN: %clang_cl /Zs /RTC1 /wfoo /Zc:wchar_t- -- %s 2>&1 |
Hans Wennborg | 96d5484 | 2013-08-02 22:24:50 +0000 | [diff] [blame] | 100 | // RUN: %clang_cl /Zs /ZI /Zi /showIncludes -- %s 2>&1 |