<div dir="ltr"><div>The msys shell is applying these transformations:<br></div><div><a href="http://www.mingw.org/wiki/Posix_path_conversion">http://www.mingw.org/wiki/Posix_path_conversion</a><br></div><div><br></div><div>
It looks like this commit didn't fix the test, and that page doesn't show any way to avoid this conversion.</div></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Sun, Jul 28, 2013 at 1:13 PM, Rafael Espindola <span dir="ltr"><<a href="mailto:rafael.espindola@gmail.com" target="_blank">rafael.espindola@gmail.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Author: rafael<br>
Date: Sun Jul 28 12:13:24 2013<br>
New Revision: 187330<br>
<br>
URL: <a href="http://llvm.org/viewvc/llvm-project?rev=187330&view=rev" target="_blank">http://llvm.org/viewvc/llvm-project?rev=187330&view=rev</a><br>
Log:<br>
Try single quotes to fix the msys bot:<br>
<br>
It was still failing with double quotes:<br>
<br>
<a href="http://bb.pgr.jp/builders/clang-i686-msys/builds/698/steps/test_clang/logs/Clang%20%3A%3A%20Driver__cl.c" target="_blank">http://bb.pgr.jp/builders/clang-i686-msys/builds/698/steps/test_clang/logs/Clang%20%3A%3A%20Driver__cl.c</a><br>

<br>
Modified:<br>
    cfe/trunk/test/Driver/cl.c<br>
<br>
Modified: cfe/trunk/test/Driver/cl.c<br>
URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Driver/cl.c?rev=187330&r1=187329&r2=187330&view=diff" target="_blank">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Driver/cl.c?rev=187330&r1=187329&r2=187330&view=diff</a><br>

==============================================================================<br>
--- cfe/trunk/test/Driver/cl.c (original)<br>
+++ cfe/trunk/test/Driver/cl.c Sun Jul 28 12:13:24 2013<br>
@@ -1,19 +1,18 @@<br>
-// Note: we have to quote the /? option, otherwise some shells will try<br>
-// to expand the ? into a one-letter filename in the root directory,<br>
-// and make the test fail if such a file or directory exists.<br>
+// Note: we have to quote the options with a /, otherwise some shells will try<br>
+// to expand it and make test fail.<br>
<br>
 // Check that clang-cl options are not available by default.<br>
 // RUN: %clang -help | FileCheck %s -check-prefix=DEFAULT<br>
 // DEFAULT-NOT: CL.EXE COMPATIBILITY OPTIONS<br>
 // DEFAULT-NOT: {{/[?]}}<br>
 // DEFAULT-NOT: /help<br>
-// RUN: not %clang "/?"<br>
+// RUN: not %clang '/?'<br>
 // RUN: not %clang -?<br>
-// RUN: not %clang /help<br>
+// RUN: not %clang '/help'<br>
<br>
-// Check that "/?" and /help are available as clang-cl options.<br>
-// RUN: %clang_cl "/?" | FileCheck %s -check-prefix=CL<br>
-// RUN: %clang_cl /help | FileCheck %s -check-prefix=CL<br>
+// Check that '/?' and '/help' are available as clang-cl options.<br>
+// RUN: %clang_cl '/?' | FileCheck %s -check-prefix=CL<br>
+// RUN: %clang_cl '/help' | FileCheck %s -check-prefix=CL<br>
 // RUN: %clang_cl -help | FileCheck %s -check-prefix=CL<br>
 // CL: CL.EXE COMPATIBILITY OPTIONS<br>
 // CL: {{/[?]}}<br>
<br>
<br>
_______________________________________________<br>
cfe-commits mailing list<br>
<a href="mailto:cfe-commits@cs.uiuc.edu">cfe-commits@cs.uiuc.edu</a><br>
<a href="http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits" target="_blank">http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits</a><br>
</blockquote></div><br></div>