1 // Don't attempt slash switches on msys bash. 2 // REQUIRES: shell-preserves-root 3 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. 6 7 // RUN: %clang_cl /c -### -- %s 2>&1 | FileCheck -check-prefix=DEFAULT %s 8 // DEFAULT: "-o" "cl-outputs.obj" 9 10 // RUN: %clang_cl /Fo -### -- %s 2>&1 | FileCheck -check-prefix=FoEMPTY %s 11 // FoEMPTY: "-o" "cl-outputs.obj" 12 13 // RUN: %clang_cl /Foa -### -- %s 2>&1 | FileCheck -check-prefix=FoNAME %s 14 // FoNAME: "-o" "a.obj" 15 16 // RUN: %clang_cl /Foa.ext /Fob.ext -### -- %s 2>&1 | FileCheck -check-prefix=FoNAMEEXT %s 17 // FoNAMEEXT: "-o" "b.ext" 18 19 // RUN: %clang_cl /Fofoo.dir/ -### -- %s 2>&1 | FileCheck -check-prefix=FoDIR %s 20 // FoDIR: "-o" "foo.dir{{[/\\]+}}cl-outputs.obj" 21 22 // RUN: %clang_cl /Fofoo.dir/a -### -- %s 2>&1 | FileCheck -check-prefix=FoDIRNAME %s 23 // FoDIRNAME: "-o" "foo.dir{{[/\\]+}}a.obj" 24 25 // RUN: %clang_cl /Fofoo.dir/a.ext -### -- %s 2>&1 | FileCheck -check-prefix=FoDIRNAMEEXT %s 26 // FoDIRNAMEEXT: "-o" "foo.dir{{[/\\]+}}a.ext" 27 28 // RUN: %clang_cl /Fo.. -### -- %s 2>&1 | FileCheck -check-prefix=FoCRAZY %s 29 // FoCRAZY: "-o" "..obj" 30 31 // RUN: %clang_cl /Foa.obj -### -- %s %s 2>&1 | FileCheck -check-prefix=CHECK-MULTIPLESOURCEERROR %s 32 // CHECK-MULTIPLESOURCEERROR: error: cannot specify '/Foa.obj' when compiling multiple source files 33 34 // RUN: %clang_cl /Fomydir/ -### -- %s %s 2>&1 | FileCheck -check-prefix=CHECK-MULTIPLESOURCEOK %s 35 // CHECK-MULTIPLESOURCEOK: "-o" "mydir{{[/\\]+}}cl-outputs.obj" 36 37 // RUN: %clang_cl /Fo -### -- %s %s 2>&1 | FileCheck -check-prefix=CHECK-MULTIPLESOURCEOK2 %s 38 // CHECK-MULTIPLESOURCEOK2: "-o" "cl-outputs.obj" 39 // CHECK-MULTIPLESOURCEOK2: "-o" "cl-outputs.obj" 40 41 // RUN: %clang_cl /c /oa -### -- %s 2>&1 | FileCheck -check-prefix=oNAME1 %s 42 // oNAME1: "-o" "a.obj" 43 44 // RUN: %clang_cl /c /o a -### -- %s 2>&1 | FileCheck -check-prefix=oNAME2 %s 45 // oNAME2: "-o" "a.obj" 46 47 // RUN: %clang_cl /c /oa.ext /ob.ext -### -- %s 2>&1 | FileCheck -check-prefix=oNAMEEXT1 %s 48 // oNAMEEXT1: "-o" "b.ext" 49 50 // RUN: %clang_cl /c /o a.ext /ob.ext -### -- %s 2>&1 | FileCheck -check-prefix=oNAMEEXT2 %s 51 // oNAMEEXT2: "-o" "b.ext" 52 53 // RUN: %clang_cl /c /ofoo.dir/ -### -- %s 2>&1 | FileCheck -check-prefix=oDIR1 %s 54 // oDIR1: "-o" "foo.dir{{[/\\]+}}cl-outputs.obj" 55 56 // RUN: %clang_cl /c /o foo.dir/ -### -- %s 2>&1 | FileCheck -check-prefix=oDIR2 %s 57 // oDIR2: "-o" "foo.dir{{[/\\]+}}cl-outputs.obj" 58 59 // RUN: %clang_cl /c /ofoo.dir/a -### -- %s 2>&1 | FileCheck -check-prefix=oDIRNAME1 %s 60 // oDIRNAME1: "-o" "foo.dir{{[/\\]+}}a.obj" 61 62 // RUN: %clang_cl /c /o foo.dir/a -### -- %s 2>&1 | FileCheck -check-prefix=oDIRNAME2 %s 63 // oDIRNAME2: "-o" "foo.dir{{[/\\]+}}a.obj" 64 65 // RUN: %clang_cl /c /ofoo.dir/a.ext -### -- %s 2>&1 | FileCheck -check-prefix=oDIRNAMEEXT1 %s 66 // oDIRNAMEEXT1: "-o" "foo.dir{{[/\\]+}}a.ext" 67 68 // RUN: %clang_cl /c /o foo.dir/a.ext -### -- %s 2>&1 | FileCheck -check-prefix=oDIRNAMEEXT2 %s 69 // oDIRNAMEEXT2: "-o" "foo.dir{{[/\\]+}}a.ext" 70 71 // RUN: %clang_cl /c /o.. -### -- %s 2>&1 | FileCheck -check-prefix=oCRAZY1 %s 72 // oCRAZY1: "-o" "..obj" 73 74 // RUN: %clang_cl /c /o .. -### -- %s 2>&1 | FileCheck -check-prefix=oCRAZY2 %s 75 // oCRAZY2: "-o" "..obj" 76 77 // RUN: %clang_cl /c %s -### /o 2>&1 | FileCheck -check-prefix=oMISSINGARG %s 78 // oMISSINGARG: error: argument to '/o' is missing (expected 1 value) 79 80 // RUN: %clang_cl /c /omydir/ -### -- %s %s 2>&1 | FileCheck -check-prefix=CHECK-oMULTIPLESOURCEOK1 %s 81 // CHECK-oMULTIPLESOURCEOK1: "-o" "mydir{{[/\\]+}}cl-outputs.obj" 82 83 // RUN: %clang_cl /c /o mydir/ -### -- %s %s 2>&1 | FileCheck -check-prefix=CHECK-oMULTIPLESOURCEOK2 %s 84 // CHECK-oMULTIPLESOURCEOK2: "-o" "mydir{{[/\\]+}}cl-outputs.obj" 85 86 87 // RUN: %clang_cl /c /obar /Fofoo -### -- %s 2>&1 | FileCheck -check-prefix=FooRACE1 %s 88 // FooRACE1: "-o" "foo.obj" 89 90 // RUN: %clang_cl /c /Fofoo /obar -### -- %s 2>&1 | FileCheck -check-prefix=FooRACE2 %s 91 // FooRACE2: "-o" "bar.obj" 92 93 94 // RUN: %clang_cl -### -- %s 2>&1 | FileCheck -check-prefix=DEFAULTEXE %s 95 // DEFAULTEXE: cl-outputs.exe 96 97 // RUN: %clang_cl /LD -### -- %s 2>&1 | FileCheck -check-prefix=DEFAULTDLL %s 98 // RUN: %clang_cl /LDd -### -- %s 2>&1 | FileCheck -check-prefix=DEFAULTDLL %s 99 // DEFAULTDLL: "-out:cl-outputs.dll" 100 // DEFAULTDLL: "-implib:cl-outputs.lib" 101 102 // RUN: %clang_cl /Fefoo -### -- %s 2>&1 | FileCheck -check-prefix=FeNOEXT %s 103 // FeNOEXT: "-out:foo.exe" 104 105 // RUN: %clang_cl /Fe -### -- %s 2>&1 | FileCheck -check-prefix=FeEMPTY %s 106 // FeEMPTY-NOT: argument to '/Fe' is missing 107 // FeEMPTY: "-out:cl-outputs.exe" 108 109 // RUN: %clang_cl /Fefoo /LD -### -- %s 2>&1 | FileCheck -check-prefix=FeNOEXTDLL %s 110 // RUN: %clang_cl /Fefoo /LDd -### -- %s 2>&1 | FileCheck -check-prefix=FeNOEXTDLL %s 111 // FeNOEXTDLL: "-out:foo.dll" 112 // FeNOEXTDLL: "-implib:foo.lib" 113 114 // RUN: %clang_cl /Fefoo.ext -### -- %s 2>&1 | FileCheck -check-prefix=FeEXT %s 115 // FeEXT: "-out:foo.ext" 116 117 // RUN: %clang_cl /LD /Fefoo.ext -### -- %s 2>&1 | FileCheck -check-prefix=FeEXTDLL %s 118 // RUN: %clang_cl /LDd /Fefoo.ext -### -- %s 2>&1 | FileCheck -check-prefix=FeEXTDLL %s 119 // FeEXTDLL: "-out:foo.ext" 120 // FeEXTDLL: "-implib:foo.lib" 121 122 // RUN: %clang_cl /Fefoo.dir/ -### -- %s 2>&1 | FileCheck -check-prefix=FeDIR %s 123 // FeDIR: "-out:foo.dir{{[/\\]+}}cl-outputs.exe" 124 125 // RUN: %clang_cl /LD /Fefoo.dir/ -### -- %s 2>&1 | FileCheck -check-prefix=FeDIRDLL %s 126 // RUN: %clang_cl /LDd /Fefoo.dir/ -### -- %s 2>&1 | FileCheck -check-prefix=FeDIRDLL %s 127 // FeDIRDLL: "-out:foo.dir{{[/\\]+}}cl-outputs.dll" 128 // FeDIRDLL: "-implib:foo.dir{{[/\\]+}}cl-outputs.lib" 129 130 // RUN: %clang_cl /Fefoo.dir/a -### -- %s 2>&1 | FileCheck -check-prefix=FeDIRNAME %s 131 // FeDIRNAME: "-out:foo.dir{{[/\\]+}}a.exe" 132 133 // RUN: %clang_cl /LD /Fefoo.dir/a -### -- %s 2>&1 | FileCheck -check-prefix=FeDIRNAMEDLL %s 134 // RUN: %clang_cl /LDd /Fefoo.dir/a -### -- %s 2>&1 | FileCheck -check-prefix=FeDIRNAMEDLL %s 135 // FeDIRNAMEDLL: "-out:foo.dir{{[/\\]+}}a.dll" 136 // FeDIRNAMEDLL: "-implib:foo.dir{{[/\\]+}}a.lib" 137 138 // RUN: %clang_cl /Fefoo.dir/a.ext -### -- %s 2>&1 | FileCheck -check-prefix=FeDIRNAMEEXT %s 139 // FeDIRNAMEEXT: "-out:foo.dir{{[/\\]+}}a.ext" 140 141 // RUN: %clang_cl /LD /Fefoo.dir/a.ext -### -- %s 2>&1 | FileCheck -check-prefix=FeDIRNAMEEXTDLL %s 142 // RUN: %clang_cl /LDd /Fefoo.dir/a.ext -### -- %s 2>&1 | FileCheck -check-prefix=FeDIRNAMEEXTDLL %s 143 // FeDIRNAMEEXTDLL: "-out:foo.dir{{[/\\]+}}a.ext" 144 // FeDIRNAMEEXTDLL: "-implib:foo.dir{{[/\\]+}}a.lib" 145 146 // RUN: %clang_cl /Fefoo /Febar -### -- %s 2>&1 | FileCheck -check-prefix=FeOVERRIDE %s 147 // FeOVERRIDE: "-out:bar.exe" 148 149 150 // RUN: %clang_cl /obar /Fefoo -### -- %s 2>&1 | FileCheck -check-prefix=FeoRACE1 %s 151 // FeoRACE1: "-out:foo.exe" 152 153 // RUN: %clang_cl /Fefoo /obar -### -- %s 2>&1 | FileCheck -check-prefix=FeoRACE2 %s 154 // FeoRACE2: "-out:bar.exe" 155 156 157 // RUN: %clang_cl /ofoo -### -- %s 2>&1 | FileCheck -check-prefix=FeoNOEXT1 %s 158 // FeoNOEXT1: "-out:foo.exe" 159 160 // RUN: %clang_cl /o foo -### -- %s 2>&1 | FileCheck -check-prefix=FeoNOEXT2 %s 161 // FeoNOEXT2: "-out:foo.exe" 162 163 // RUN: %clang_cl /o foo /LD -### -- %s 2>&1 | FileCheck -check-prefix=FeoNOEXTDLL %s 164 // RUN: %clang_cl /ofoo /LDd -### -- %s 2>&1 | FileCheck -check-prefix=FeoNOEXTDLL %s 165 // FeoNOEXTDLL: "-out:foo.dll" 166 // FeoNOEXTDLL: "-implib:foo.lib" 167 168 // RUN: %clang_cl /ofoo.ext -### -- %s 2>&1 | FileCheck -check-prefix=FeoEXT1 %s 169 // FeoEXT1: "-out:foo.ext" 170 171 // RUN: %clang_cl /o foo.ext -### -- %s 2>&1 | FileCheck -check-prefix=FeoEXT2 %s 172 // FeoEXT2: "-out:foo.ext" 173 174 // RUN: %clang_cl /LD /o foo.ext -### -- %s 2>&1 | FileCheck -check-prefix=FeoEXTDLL %s 175 // RUN: %clang_cl /LDd /ofoo.ext -### -- %s 2>&1 | FileCheck -check-prefix=FeoEXTDLL %s 176 // FeoEXTDLL: "-out:foo.ext" 177 // FeoEXTDLL: "-implib:foo.lib" 178 179 // RUN: %clang_cl /ofoo.dir/ -### -- %s 2>&1 | FileCheck -check-prefix=FeoDIR1 %s 180 // FeoDIR1: "-out:foo.dir{{[/\\]+}}cl-outputs.exe" 181 182 // RUN: %clang_cl /o foo.dir/ -### -- %s 2>&1 | FileCheck -check-prefix=FeoDIR2 %s 183 // FeoDIR2: "-out:foo.dir{{[/\\]+}}cl-outputs.exe" 184 185 // RUN: %clang_cl /LD /o foo.dir/ -### -- %s 2>&1 | FileCheck -check-prefix=FeoDIRDLL %s 186 // RUN: %clang_cl /LDd /ofoo.dir/ -### -- %s 2>&1 | FileCheck -check-prefix=FeoDIRDLL %s 187 // FeoDIRDLL: "-out:foo.dir{{[/\\]+}}cl-outputs.dll" 188 // FeoDIRDLL: "-implib:foo.dir{{[/\\]+}}cl-outputs.lib" 189 190 // RUN: %clang_cl /ofoo.dir/a -### -- %s 2>&1 | FileCheck -check-prefix=FeoDIRNAME1 %s 191 // FeoDIRNAME1: "-out:foo.dir{{[/\\]+}}a.exe" 192 193 // RUN: %clang_cl /o foo.dir/a -### -- %s 2>&1 | FileCheck -check-prefix=FeoDIRNAME2 %s 194 // FeoDIRNAME2: "-out:foo.dir{{[/\\]+}}a.exe" 195 196 // RUN: %clang_cl /LD /o foo.dir/a -### -- %s 2>&1 | FileCheck -check-prefix=FeoDIRNAMEDLL %s 197 // RUN: %clang_cl /LDd /ofoo.dir/a -### -- %s 2>&1 | FileCheck -check-prefix=FeoDIRNAMEDLL %s 198 // FeoDIRNAMEDLL: "-out:foo.dir{{[/\\]+}}a.dll" 199 // FeoDIRNAMEDLL: "-implib:foo.dir{{[/\\]+}}a.lib" 200 201 // RUN: %clang_cl /ofoo.dir/a.ext -### -- %s 2>&1 | FileCheck -check-prefix=FeoDIRNAMEEXT1 %s 202 // FeoDIRNAMEEXT1: "-out:foo.dir{{[/\\]+}}a.ext" 203 204 // RUN: %clang_cl /o foo.dir/a.ext -### -- %s 2>&1 | FileCheck -check-prefix=FeoDIRNAMEEXT2 %s 205 // FeoDIRNAMEEXT2: "-out:foo.dir{{[/\\]+}}a.ext" 206 207 // RUN: %clang_cl /LD /o foo.dir/a.ext -### -- %s 2>&1 | FileCheck -check-prefix=FeoDIRNAMEEXTDLL %s 208 // RUN: %clang_cl /LDd /ofoo.dir/a.ext -### -- %s 2>&1 | FileCheck -check-prefix=FeoDIRNAMEEXTDLL %s 209 // FeoDIRNAMEEXTDLL: "-out:foo.dir{{[/\\]+}}a.ext" 210 // FeoDIRNAMEEXTDLL: "-implib:foo.dir{{[/\\]+}}a.lib" 211 212 // RUN: %clang_cl -### /o 2>&1 | FileCheck -check-prefix=FeoMISSINGARG %s 213 // FeoMISSINGARG: error: argument to '/o' is missing (expected 1 value) 214 215 // RUN: %clang_cl /ofoo /o bar -### -- %s 2>&1 | FileCheck -check-prefix=FeoOVERRIDE %s 216 // FeoOVERRIDE: "-out:bar.exe" 217 218 219 // RUN: %clang_cl /FA -### -- %s 2>&1 | FileCheck -check-prefix=FA %s 220 // FA: "-o" "cl-outputs.asm" 221 // RUN: %clang_cl /FA /Fa -### -- %s 2>&1 | FileCheck -check-prefix=FaEMPTY %s 222 // FaEMPTY: "-o" "cl-outputs.asm" 223 // RUN: %clang_cl /FA /Fafoo -### -- %s 2>&1 | FileCheck -check-prefix=FaNAME %s 224 // RUN: %clang_cl /Fafoo -### -- %s 2>&1 | FileCheck -check-prefix=FaNAME %s 225 // FaNAME: "-o" "foo.asm" 226 // RUN: %clang_cl /FA /Faa.ext /Fab.ext -### -- %s 2>&1 | FileCheck -check-prefix=FaNAMEEXT %s 227 // FaNAMEEXT: "-o" "b.ext" 228 // RUN: %clang_cl /FA /Fafoo.dir/ -### -- %s 2>&1 | FileCheck -check-prefix=FaDIR %s 229 // FaDIR: "-o" "foo.dir{{[/\\]+}}cl-outputs.asm" 230 // RUN: %clang_cl /FA /Fafoo.dir/a -### -- %s 2>&1 | FileCheck -check-prefix=FaDIRNAME %s 231 // FaDIRNAME: "-o" "foo.dir{{[/\\]+}}a.asm" 232 // RUN: %clang_cl /FA /Fafoo.dir/a.ext -### -- %s 2>&1 | FileCheck -check-prefix=FaDIRNAMEEXT %s 233 // FaDIRNAMEEXT: "-o" "foo.dir{{[/\\]+}}a.ext" 234 // RUN: %clang_cl /Faa.asm -### -- %s %s 2>&1 | FileCheck -check-prefix=FaMULTIPLESOURCE %s 235 // FaMULTIPLESOURCE: error: cannot specify '/Faa.asm' when compiling multiple source files 236 // RUN: %clang_cl /Fa -### -- %s %s 2>&1 | FileCheck -check-prefix=FaMULTIPLESOURCEOK %s 237 // FaMULTIPLESOURCEOK: "-o" "cl-outputs.asm" 238 // FaMULTIPLESOURCEOK: "-o" "cl-outputs.asm" 239 240 // RUN: %clang_cl /P -### -- %s 2>&1 | FileCheck -check-prefix=P %s 241 // P: "-E" 242 // P: "-o" "cl-outputs.i" 243 244 // RUN: %clang_cl /P /Fifoo -### -- %s 2>&1 | FileCheck -check-prefix=Fi1 %s 245 // Fi1: "-E" 246 // Fi1: "-o" "foo.i" 247 248 // RUN: %clang_cl /P /Fifoo.x -### -- %s 2>&1 | FileCheck -check-prefix=Fi2 %s 249 // Fi2: "-E" 250 // Fi2: "-o" "foo.x" 251 252 // RUN: %clang_cl /P /ofoo -### -- %s 2>&1 | FileCheck -check-prefix=Fio1 %s 253 // Fio1: "-E" 254 // Fio1: "-o" "foo.i" 255 256 // RUN: %clang_cl /P /o foo -### -- %s 2>&1 | FileCheck -check-prefix=Fio2 %s 257 // Fio2: "-E" 258 // Fio2: "-o" "foo.i" 259 260 // RUN: %clang_cl /P /ofoo.x -### -- %s 2>&1 | FileCheck -check-prefix=Fio3 %s 261 // Fio3: "-E" 262 // Fio3: "-o" "foo.x" 263 264 // RUN: %clang_cl /P /o foo.x -### -- %s 2>&1 | FileCheck -check-prefix=Fio4 %s 265 // Fio4: "-E" 266 // Fio4: "-o" "foo.x" 267 268 269 // RUN: %clang_cl /P /obar.x /Fifoo.x -### -- %s 2>&1 | FileCheck -check-prefix=FioRACE1 %s 270 // FioRACE1: "-E" 271 // FioRACE1: "-o" "foo.x" 272 273 // RUN: %clang_cl /P /Fifoo.x /obar.x -### -- %s 2>&1 | FileCheck -check-prefix=FioRACE2 %s 274 // FioRACE2: "-E" 275 // FioRACE2: "-o" "bar.x" 276