1 // Note: %s must be preceded by --, otherwise it may be interpreted as a
2 // command-line option, e.g. on Mac where %s is commonly under /Users.
4 // RUN: %clang_cl /c -### -- %s 2>&1 | FileCheck -check-prefix=DEFAULT %s
5 // RUN: %clang_cl /c -flto -### -- %s 2>&1 | FileCheck -check-prefix=DEFAULT %s
6 // DEFAULT: "-o" "cl-outputs.obj"
8 // RUN: %clang_cl /Fo -### -- %s 2>&1 | FileCheck -check-prefix=FoEMPTY %s
9 // FoEMPTY: "-o" "cl-outputs.obj"
11 // RUN: %clang_cl /Foa -### -- %s 2>&1 | FileCheck -check-prefix=FoNAME %s
12 // RUN: %clang_cl /Foa -flto -### -- %s 2>&1 | FileCheck -check-prefix=FoNAME %s
13 // FoNAME: "-o" "a.obj"
15 // RUN: %clang_cl /Foa.ext /Fob.ext -### -- %s 2>&1 | FileCheck -check-prefix=FoNAMEEXT %s
16 // FoNAMEEXT: "-o" "b.ext"
18 // RUN: %clang_cl /Fofoo.dir/ -### -- %s 2>&1 | FileCheck -check-prefix=FoDIR %s
19 // FoDIR: "-o" "foo.dir{{[/\\]+}}cl-outputs.obj"
21 // RUN: %clang_cl /Fofoo.dir/a -### -- %s 2>&1 | FileCheck -check-prefix=FoDIRNAME %s
22 // FoDIRNAME: "-o" "foo.dir{{[/\\]+}}a.obj"
24 // RUN: %clang_cl /Fofoo.dir/a.ext -### -- %s 2>&1 | FileCheck -check-prefix=FoDIRNAMEEXT %s
25 // FoDIRNAMEEXT: "-o" "foo.dir{{[/\\]+}}a.ext"
27 // RUN: %clang_cl /Fo.. -### -- %s 2>&1 | FileCheck -check-prefix=FoCRAZY %s
28 // FoCRAZY: "-o" "..obj"
30 // RUN: %clang_cl /Foa.obj -### -- %s %s 2>&1 | FileCheck -check-prefix=CHECK-MULTIPLESOURCEERROR %s
31 // CHECK-MULTIPLESOURCEERROR: error: cannot specify '/Foa.obj' when compiling multiple source files
33 // RUN: %clang_cl /Fomydir/ -### -- %s %s 2>&1 | FileCheck -check-prefix=CHECK-MULTIPLESOURCEOK %s
34 // CHECK-MULTIPLESOURCEOK: "-o" "mydir{{[/\\]+}}cl-outputs.obj"
36 // RUN: %clang_cl /Fo -### -- %s %s 2>&1 | FileCheck -check-prefix=CHECK-MULTIPLESOURCEOK2 %s
37 // CHECK-MULTIPLESOURCEOK2: "-o" "cl-outputs.obj"
38 // CHECK-MULTIPLESOURCEOK2: "-o" "cl-outputs.obj"
40 // RUN: %clang_cl /c /oa -### -- %s 2>&1 | FileCheck -check-prefix=oNAME1 %s
41 // oNAME1: "-o" "a.obj"
43 // RUN: %clang_cl /c /o a -### -- %s 2>&1 | FileCheck -check-prefix=oNAME2 %s
44 // oNAME2: "-o" "a.obj"
46 // RUN: %clang_cl /c /oa.ext /ob.ext -### -- %s 2>&1 | FileCheck -check-prefix=oNAMEEXT1 %s
47 // oNAMEEXT1: "-o" "b.ext"
49 // RUN: %clang_cl /c /o a.ext /ob.ext -### -- %s 2>&1 | FileCheck -check-prefix=oNAMEEXT2 %s
50 // oNAMEEXT2: "-o" "b.ext"
52 // RUN: %clang_cl /c /ofoo.dir/ -### -- %s 2>&1 | FileCheck -check-prefix=oDIR1 %s
53 // oDIR1: "-o" "foo.dir{{[/\\]+}}cl-outputs.obj"
55 // RUN: %clang_cl /c /o foo.dir/ -### -- %s 2>&1 | FileCheck -check-prefix=oDIR2 %s
56 // oDIR2: "-o" "foo.dir{{[/\\]+}}cl-outputs.obj"
58 // RUN: %clang_cl /c /ofoo.dir/a -### -- %s 2>&1 | FileCheck -check-prefix=oDIRNAME1 %s
59 // oDIRNAME1: "-o" "foo.dir{{[/\\]+}}a.obj"
61 // RUN: %clang_cl /c /o foo.dir/a -### -- %s 2>&1 | FileCheck -check-prefix=oDIRNAME2 %s
62 // oDIRNAME2: "-o" "foo.dir{{[/\\]+}}a.obj"
64 // RUN: %clang_cl /c /ofoo.dir/a.ext -### -- %s 2>&1 | FileCheck -check-prefix=oDIRNAMEEXT1 %s
65 // oDIRNAMEEXT1: "-o" "foo.dir{{[/\\]+}}a.ext"
67 // RUN: %clang_cl /c /o foo.dir/a.ext -### -- %s 2>&1 | FileCheck -check-prefix=oDIRNAMEEXT2 %s
68 // oDIRNAMEEXT2: "-o" "foo.dir{{[/\\]+}}a.ext"
70 // RUN: %clang_cl /c /o.. -### -- %s 2>&1 | FileCheck -check-prefix=oCRAZY1 %s
71 // oCRAZY1: "-o" "..obj"
73 // RUN: %clang_cl /c /o .. -### -- %s 2>&1 | FileCheck -check-prefix=oCRAZY2 %s
74 // oCRAZY2: "-o" "..obj"
76 // RUN: not %clang_cl /c %s -### /o 2>&1 | FileCheck -check-prefix=oMISSINGARG %s
77 // oMISSINGARG: error: argument to '/o' is missing (expected 1 value)
79 // RUN: %clang_cl /c /omydir/ -### -- %s %s 2>&1 | FileCheck -check-prefix=CHECK-oMULTIPLESOURCEOK1 %s
80 // CHECK-oMULTIPLESOURCEOK1: "-o" "mydir{{[/\\]+}}cl-outputs.obj"
82 // RUN: %clang_cl /c /o mydir/ -### -- %s %s 2>&1 | FileCheck -check-prefix=CHECK-oMULTIPLESOURCEOK2 %s
83 // CHECK-oMULTIPLESOURCEOK2: "-o" "mydir{{[/\\]+}}cl-outputs.obj"
85 // RUN: %clang_cl -emit-ast /otest.ast -### -- %s 2>&1 | FileCheck -check-prefix=oASTNAME %s
86 // oASTNAME: "-o" "test.ast"
88 // RUN: %clang_cl --analyze /otest.plist -### -- %s 2>&1 | FileCheck -check-prefix=oPLIST %s
89 // oPLIST: "-o" "test.plist"
91 // RUN: %clang_cl /c /obar /Fofoo -### -- %s 2>&1 | FileCheck -check-prefix=FooRACE1 %s
92 // FooRACE1: "-o" "foo.obj"
94 // RUN: %clang_cl /c /Fofoo /obar -### -- %s 2>&1 | FileCheck -check-prefix=FooRACE2 %s
95 // FooRACE2: "-o" "bar.obj"
98 // RUN: %clang_cl -### -- %s 2>&1 | FileCheck -check-prefix=DEFAULTEXE %s
99 // DEFAULTEXE: cl-outputs.exe
101 // RUN: %clang_cl /LD -### -- %s 2>&1 | FileCheck -check-prefix=DEFAULTDLL %s
102 // RUN: %clang_cl /LDd -### -- %s 2>&1 | FileCheck -check-prefix=DEFAULTDLL %s
103 // DEFAULTDLL: "-out:cl-outputs.dll"
104 // DEFAULTDLL: "-implib:cl-outputs.lib"
106 // RUN: %clang_cl /Fefoo -### -- %s 2>&1 | FileCheck -check-prefix=FeNOEXT %s
107 // RUN: %clang_cl /Fe:foo -### -- %s 2>&1 | FileCheck -check-prefix=FeNOEXT %s
108 // FeNOEXT: "-out:foo.exe"
110 // RUN: %clang_cl /Fe -### -- %s 2>&1 | FileCheck -check-prefix=FeEMPTY %s
111 // FeEMPTY-NOT: argument to '/Fe' is missing
112 // FeEMPTY: "-out:cl-outputs.exe"
114 // RUN: %clang_cl /Fefoo /LD -### -- %s 2>&1 | FileCheck -check-prefix=FeNOEXTDLL %s
115 // RUN: %clang_cl /Fefoo /LDd -### -- %s 2>&1 | FileCheck -check-prefix=FeNOEXTDLL %s
116 // FeNOEXTDLL: "-out:foo.dll"
117 // FeNOEXTDLL: "-implib:foo.lib"
119 // RUN: %clang_cl /Fefoo.ext -### -- %s 2>&1 | FileCheck -check-prefix=FeEXT %s
120 // RUN: %clang_cl /Fe:foo.ext -### -- %s 2>&1 | FileCheck -check-prefix=FeEXT %s
121 // FeEXT: "-out:foo.ext"
123 // RUN: %clang_cl /LD /Fefoo.ext -### -- %s 2>&1 | FileCheck -check-prefix=FeEXTDLL %s
124 // RUN: %clang_cl /LDd /Fefoo.ext -### -- %s 2>&1 | FileCheck -check-prefix=FeEXTDLL %s
125 // FeEXTDLL: "-out:foo.ext"
126 // FeEXTDLL: "-implib:foo.lib"
128 // RUN: %clang_cl /Fefoo.dir/ -### -- %s 2>&1 | FileCheck -check-prefix=FeDIR %s
129 // FeDIR: "-out:foo.dir{{[/\\]+}}cl-outputs.exe"
131 // RUN: %clang_cl /LD /Fefoo.dir/ -### -- %s 2>&1 | FileCheck -check-prefix=FeDIRDLL %s
132 // RUN: %clang_cl /LDd /Fefoo.dir/ -### -- %s 2>&1 | FileCheck -check-prefix=FeDIRDLL %s
133 // FeDIRDLL: "-out:foo.dir{{[/\\]+}}cl-outputs.dll"
134 // FeDIRDLL: "-implib:foo.dir{{[/\\]+}}cl-outputs.lib"
136 // RUN: %clang_cl /Fefoo.dir/a -### -- %s 2>&1 | FileCheck -check-prefix=FeDIRNAME %s
137 // FeDIRNAME: "-out:foo.dir{{[/\\]+}}a.exe"
139 // RUN: %clang_cl /LD /Fefoo.dir/a -### -- %s 2>&1 | FileCheck -check-prefix=FeDIRNAMEDLL %s
140 // RUN: %clang_cl /LDd /Fefoo.dir/a -### -- %s 2>&1 | FileCheck -check-prefix=FeDIRNAMEDLL %s
141 // FeDIRNAMEDLL: "-out:foo.dir{{[/\\]+}}a.dll"
142 // FeDIRNAMEDLL: "-implib:foo.dir{{[/\\]+}}a.lib"
144 // RUN: %clang_cl /Fefoo.dir/a.ext -### -- %s 2>&1 | FileCheck -check-prefix=FeDIRNAMEEXT %s
145 // FeDIRNAMEEXT: "-out:foo.dir{{[/\\]+}}a.ext"
147 // RUN: %clang_cl /LD /Fefoo.dir/a.ext -### -- %s 2>&1 | FileCheck -check-prefix=FeDIRNAMEEXTDLL %s
148 // RUN: %clang_cl /LDd /Fefoo.dir/a.ext -### -- %s 2>&1 | FileCheck -check-prefix=FeDIRNAMEEXTDLL %s
149 // FeDIRNAMEEXTDLL: "-out:foo.dir{{[/\\]+}}a.ext"
150 // FeDIRNAMEEXTDLL: "-implib:foo.dir{{[/\\]+}}a.lib"
152 // RUN: %clang_cl /Fefoo /Febar -### -- %s 2>&1 | FileCheck -check-prefix=FeOVERRIDE %s
153 // FeOVERRIDE: "-out:bar.exe"
156 // RUN: %clang_cl /obar /Fefoo -### -- %s 2>&1 | FileCheck -check-prefix=FeoRACE1 %s
157 // FeoRACE1: "-out:foo.exe"
159 // RUN: %clang_cl /Fefoo /obar -### -- %s 2>&1 | FileCheck -check-prefix=FeoRACE2 %s
160 // FeoRACE2: "-out:bar.exe"
163 // RUN: %clang_cl /ofoo -### -- %s 2>&1 | FileCheck -check-prefix=FeoNOEXT1 %s
164 // FeoNOEXT1: "-out:foo.exe"
166 // RUN: %clang_cl /o foo -### -- %s 2>&1 | FileCheck -check-prefix=FeoNOEXT2 %s
167 // FeoNOEXT2: "-out:foo.exe"
169 // RUN: %clang_cl /o foo /LD -### -- %s 2>&1 | FileCheck -check-prefix=FeoNOEXTDLL %s
170 // RUN: %clang_cl /ofoo /LDd -### -- %s 2>&1 | FileCheck -check-prefix=FeoNOEXTDLL %s
171 // FeoNOEXTDLL: "-out:foo.dll"
172 // FeoNOEXTDLL: "-implib:foo.lib"
174 // RUN: %clang_cl /ofoo.ext -### -- %s 2>&1 | FileCheck -check-prefix=FeoEXT1 %s
175 // FeoEXT1: "-out:foo.ext"
177 // RUN: %clang_cl /o foo.ext -### -- %s 2>&1 | FileCheck -check-prefix=FeoEXT2 %s
178 // FeoEXT2: "-out:foo.ext"
180 // RUN: %clang_cl /LD /o foo.ext -### -- %s 2>&1 | FileCheck -check-prefix=FeoEXTDLL %s
181 // RUN: %clang_cl /LDd /ofoo.ext -### -- %s 2>&1 | FileCheck -check-prefix=FeoEXTDLL %s
182 // FeoEXTDLL: "-out:foo.ext"
183 // FeoEXTDLL: "-implib:foo.lib"
185 // RUN: %clang_cl /ofoo.dir/ -### -- %s 2>&1 | FileCheck -check-prefix=FeoDIR1 %s
186 // FeoDIR1: "-out:foo.dir{{[/\\]+}}cl-outputs.exe"
188 // RUN: %clang_cl /o foo.dir/ -### -- %s 2>&1 | FileCheck -check-prefix=FeoDIR2 %s
189 // FeoDIR2: "-out:foo.dir{{[/\\]+}}cl-outputs.exe"
191 // RUN: %clang_cl /LD /o foo.dir/ -### -- %s 2>&1 | FileCheck -check-prefix=FeoDIRDLL %s
192 // RUN: %clang_cl /LDd /ofoo.dir/ -### -- %s 2>&1 | FileCheck -check-prefix=FeoDIRDLL %s
193 // FeoDIRDLL: "-out:foo.dir{{[/\\]+}}cl-outputs.dll"
194 // FeoDIRDLL: "-implib:foo.dir{{[/\\]+}}cl-outputs.lib"
196 // RUN: %clang_cl /ofoo.dir/a -### -- %s 2>&1 | FileCheck -check-prefix=FeoDIRNAME1 %s
197 // FeoDIRNAME1: "-out:foo.dir{{[/\\]+}}a.exe"
199 // RUN: %clang_cl /o foo.dir/a -### -- %s 2>&1 | FileCheck -check-prefix=FeoDIRNAME2 %s
200 // FeoDIRNAME2: "-out:foo.dir{{[/\\]+}}a.exe"
202 // RUN: %clang_cl /LD /o foo.dir/a -### -- %s 2>&1 | FileCheck -check-prefix=FeoDIRNAMEDLL %s
203 // RUN: %clang_cl /LDd /ofoo.dir/a -### -- %s 2>&1 | FileCheck -check-prefix=FeoDIRNAMEDLL %s
204 // FeoDIRNAMEDLL: "-out:foo.dir{{[/\\]+}}a.dll"
205 // FeoDIRNAMEDLL: "-implib:foo.dir{{[/\\]+}}a.lib"
207 // RUN: %clang_cl /ofoo.dir/a.ext -### -- %s 2>&1 | FileCheck -check-prefix=FeoDIRNAMEEXT1 %s
208 // FeoDIRNAMEEXT1: "-out:foo.dir{{[/\\]+}}a.ext"
210 // RUN: %clang_cl /o foo.dir/a.ext -### -- %s 2>&1 | FileCheck -check-prefix=FeoDIRNAMEEXT2 %s
211 // FeoDIRNAMEEXT2: "-out:foo.dir{{[/\\]+}}a.ext"
213 // RUN: %clang_cl /LD /o foo.dir/a.ext -### -- %s 2>&1 | FileCheck -check-prefix=FeoDIRNAMEEXTDLL %s
214 // RUN: %clang_cl /LDd /ofoo.dir/a.ext -### -- %s 2>&1 | FileCheck -check-prefix=FeoDIRNAMEEXTDLL %s
215 // FeoDIRNAMEEXTDLL: "-out:foo.dir{{[/\\]+}}a.ext"
216 // FeoDIRNAMEEXTDLL: "-implib:foo.dir{{[/\\]+}}a.lib"
218 // RUN: not %clang_cl -### /o 2>&1 | FileCheck -check-prefix=FeoMISSINGARG %s
219 // FeoMISSINGARG: error: argument to '/o' is missing (expected 1 value)
221 // RUN: %clang_cl /ofoo /o bar -### -- %s 2>&1 | FileCheck -check-prefix=FeoOVERRIDE %s
222 // FeoOVERRIDE: "-out:bar.exe"
225 // RUN: %clang_cl /FA -### -- %s 2>&1 | FileCheck -check-prefix=FA %s
226 // FA: "-o" "cl-outputs.asm"
227 // RUN: %clang_cl /FA /Fa -### -- %s 2>&1 | FileCheck -check-prefix=FaEMPTY %s
228 // FaEMPTY: "-o" "cl-outputs.asm"
229 // RUN: %clang_cl /FA /Fafoo -### -- %s 2>&1 | FileCheck -check-prefix=FaNAME %s
230 // RUN: %clang_cl /Fafoo -### -- %s 2>&1 | FileCheck -check-prefix=FaNAME %s
231 // FaNAME: "-o" "foo.asm"
232 // RUN: %clang_cl /FA /Faa.ext /Fab.ext -### -- %s 2>&1 | FileCheck -check-prefix=FaNAMEEXT %s
233 // FaNAMEEXT: "-o" "b.ext"
234 // RUN: %clang_cl /FA /Fafoo.dir/ -### -- %s 2>&1 | FileCheck -check-prefix=FaDIR %s
235 // FaDIR: "-o" "foo.dir{{[/\\]+}}cl-outputs.asm"
236 // RUN: %clang_cl /FA /Fafoo.dir/a -### -- %s 2>&1 | FileCheck -check-prefix=FaDIRNAME %s
237 // FaDIRNAME: "-o" "foo.dir{{[/\\]+}}a.asm"
238 // RUN: %clang_cl /FA /Fafoo.dir/a.ext -### -- %s 2>&1 | FileCheck -check-prefix=FaDIRNAMEEXT %s
239 // FaDIRNAMEEXT: "-o" "foo.dir{{[/\\]+}}a.ext"
240 // RUN: %clang_cl /Faa.asm -### -- %s %s 2>&1 | FileCheck -check-prefix=FaMULTIPLESOURCE %s
241 // FaMULTIPLESOURCE: error: cannot specify '/Faa.asm' when compiling multiple source files
242 // RUN: %clang_cl /Fa -### -- %s %s 2>&1 | FileCheck -check-prefix=FaMULTIPLESOURCEOK %s
243 // FaMULTIPLESOURCEOK: "-o" "cl-outputs.asm"
244 // FaMULTIPLESOURCEOK: "-o" "cl-outputs.asm"
246 // Copy of the same tests above, but with /FAcsu
247 // RUN: %clang_cl /FAcsu -### -- %s 2>&1 | FileCheck -check-prefix=FA_CSU %s
248 // FA_CSU: "-o" "cl-outputs.asm"
249 // RUN: %clang_cl /FAcsu /Fa -### -- %s 2>&1 | FileCheck -check-prefix=FA_CSU_FaEMPTY %s
250 // FA_CSU_FaEMPTY: "-o" "cl-outputs.asm"
251 // RUN: %clang_cl /FAcsu /Fafoo -### -- %s 2>&1 | FileCheck -check-prefix=FA_CSU_FaNAME %s
252 // RUN: %clang_cl /Fafoo -### -- %s 2>&1 | FileCheck -check-prefix=FA_CSU_FaNAME %s
253 // FA_CSU_FaNAME: "-o" "foo.asm"
254 // RUN: %clang_cl /FAcsu /Faa.ext /Fab.ext -### -- %s 2>&1 | FileCheck -check-prefix=FA_CSU_FaNAMEEXT %s
255 // FA_CSU_FaNAMEEXT: "-o" "b.ext"
256 // RUN: %clang_cl /FAcsu /Fafoo.dir/ -### -- %s 2>&1 | FileCheck -check-prefix=FA_CSU_FaDIR %s
257 // FA_CSU_FaDIR: "-o" "foo.dir{{[/\\]+}}cl-outputs.asm"
258 // RUN: %clang_cl /FAcsu /Fafoo.dir/a -### -- %s 2>&1 | FileCheck -check-prefix=FA_CSU_FaDIRNAME %s
259 // FA_CSU_FaDIRNAME: "-o" "foo.dir{{[/\\]+}}a.asm"
260 // RUN: %clang_cl /FAcsu /Fafoo.dir/a.ext -### -- %s 2>&1 | FileCheck -check-prefix=FA_CSU_FaDIRNAMEEXT %s
261 // FA_CSU_FaDIRNAMEEXT: "-o" "foo.dir{{[/\\]+}}a.ext"
262 // RUN: %clang_cl /Faa.asm -### -- %s %s 2>&1 | FileCheck -check-prefix=FA_CSU_FaMULTIPLESOURCE %s
263 // FA_CSU_FaMULTIPLESOURCE: error: cannot specify '/Faa.asm' when compiling multiple source files
264 // RUN: %clang_cl /Fa -### -- %s %s 2>&1 | FileCheck -check-prefix=FA_CSU_FaMULTIPLESOURCEOK %s
265 // FA_CSU_FaMULTIPLESOURCEOK: "-o" "cl-outputs.asm"
266 // FA_CSU_FaMULTIPLESOURCEOK: "-o" "cl-outputs.asm"
268 // RUN: %clang_cl /P -### -- %s 2>&1 | FileCheck -check-prefix=P %s
270 // P: "-o" "cl-outputs.i"
272 // RUN: %clang_cl /P /Fifoo -### -- %s 2>&1 | FileCheck -check-prefix=Fi1 %s
276 // RUN: %clang_cl /P /Fifoo.x -### -- %s 2>&1 | FileCheck -check-prefix=Fi2 %s
280 // To match MSVC behavior /o should be ignored for /P output.
282 // RUN: %clang_cl /P /ofoo -### -- %s 2>&1 | FileCheck -check-prefix=Fio1 %s
284 // Fio1: "-o" "cl-outputs.i"
286 // RUN: %clang_cl /P /o foo.x -### -- %s 2>&1 | FileCheck -check-prefix=Fio2 %s
288 // Fio2: "-o" "cl-outputs.i"
290 // RUN: %clang_cl /P /obar.x /Fifoo.x -### -- %s 2>&1 | FileCheck -check-prefix=FioRACE1 %s
292 // FioRACE1: "-o" "foo.x"
294 // RUN: %clang_cl /P /Fifoo.x /obar.x -### -- %s 2>&1 | FileCheck -check-prefix=FioRACE2 %s
296 // FioRACE2: "-o" "foo.x"