<div dir="ltr">Hi,<div><br></div><div>It looks like the test is still failing on one of the Windows build bots:</div><div><a href="http://lab.llvm.org:8011/builders/clang-x86-windows-msvc2015">http://lab.llvm.org:8011/builders/clang-x86-windows-msvc2015</a><br></div><div><br></div><div>From looking at the test locally it seems the problem is when you do `// RUN: not env...`. The env command doesn't get handled by llvm-lit.py, because it gets passed through to `not.exe`.</div><div><br></div><div>In terms of fixing this test, changing from `not env X=Y COMMAND` to `env X=Y not COMMAND` works on my machine. Otherwise maybe llvm-lit could be changed to make the handling of env (and other utilities) consistent when used after a not?</div><div><br></div><div>Thanks,</div><div class="gmail_extra"><br clear="all"><div><div class="gmail_signature" data-smartmail="gmail_signature"><div dir="ltr"><div><div dir="ltr"><span style="color:rgb(0,0,0);font-family:'Segoe UI','Segoe UI Web Regular','Segoe UI Symbol','Helvetica Neue',Helvetica,Arial,sans-serif;font-size:13px;line-height:18.85px">Sean Eveson</span><br style="color:rgb(0,0,0);font-family:'Segoe UI','Segoe UI Web Regular','Segoe UI Symbol','Helvetica Neue',Helvetica,Arial,sans-serif;font-size:13px;line-height:18.85px"><span style="color:rgb(0,0,0);font-family:'Segoe UI','Segoe UI Web Regular','Segoe UI Symbol','Helvetica Neue',Helvetica,Arial,sans-serif;font-size:13px;line-height:18.85px">SN Systems - Sony Interactive Entertainment</span><br></div></div></div></div></div>
<br><div class="gmail_quote">On Mon, Dec 4, 2017 at 11:21 PM, Alex Lorenz via cfe-commits <span dir="ltr"><<a href="mailto:cfe-commits@lists.llvm.org" target="_blank">cfe-commits@lists.llvm.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Author: arphaman<br>
Date: Mon Dec  4 15:21:07 2017<br>
New Revision: 319715<br>
<br>
URL: <a href="http://llvm.org/viewvc/llvm-project?rev=319715&view=rev" rel="noreferrer" target="_blank">http://llvm.org/viewvc/llvm-<wbr>project?rev=319715&view=rev</a><br>
Log:<br>
Fix record-parsing-invocation.c test on Windows<br>
<br>
We should not check for the forward slash '/'<br>
<br>
Modified:<br>
    cfe/trunk/test/Index/record-<wbr>parsing-invocation.c<br>
<br>
Modified: cfe/trunk/test/Index/record-<wbr>parsing-invocation.c<br>
URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Index/record-parsing-invocation.c?rev=319715&r1=319714&r2=319715&view=diff" rel="noreferrer" target="_blank">http://llvm.org/viewvc/llvm-<wbr>project/cfe/trunk/test/Index/<wbr>record-parsing-invocation.c?<wbr>rev=319715&r1=319714&r2=<wbr>319715&view=diff</a><br>
==============================<wbr>==============================<wbr>==================<br>
--- cfe/trunk/test/Index/record-<wbr>parsing-invocation.c (original)<br>
+++ cfe/trunk/test/Index/record-<wbr>parsing-invocation.c Mon Dec  4 15:21:07 2017<br>
@@ -18,4 +18,4 @@<br>
 #  pragma clang __debug parser_crash<br>
 #endif<br>
<br>
-// CHECK: {"toolchain":"{{.*}}","<wbr>libclang.operation":"parse","<wbr>libclang.opts":1,"args":["<wbr>clang","-fno-spell-checking","<wbr>{{.*}}/record-parsing-<wbr>invocation.c","-Xclang","-<wbr>detailed-preprocessing-record"<wbr>,"-fallow-editor-placeholders"<wbr>]}<br>
+// CHECK: {"toolchain":"{{.*}}","<wbr>libclang.operation":"parse","<wbr>libclang.opts":1,"args":["<wbr>clang","-fno-spell-checking","<wbr>{{.*}}record-parsing-<wbr>invocation.c","-Xclang","-<wbr>detailed-preprocessing-record"<wbr>,"-fallow-editor-placeholders"<wbr>]}<br>
<br>
<br>
______________________________<wbr>_________________<br>
cfe-commits mailing list<br>
<a href="mailto:cfe-commits@lists.llvm.org">cfe-commits@lists.llvm.org</a><br>
<a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/<wbr>mailman/listinfo/cfe-commits</a><br>
</blockquote></div><br></div></div>