<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Thu, Aug 7, 2014 at 11:45 AM, Justin Bogner <span dir="ltr"><<a href="mailto:mail@justinbogner.com" target="_blank">mail@justinbogner.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Author: bogner<br>
Date: Thu Aug  7 13:45:21 2014<br>
New Revision: 215129<br>
<br>
URL: <a href="http://llvm.org/viewvc/llvm-project?rev=215129&view=rev" target="_blank">http://llvm.org/viewvc/llvm-project?rev=215129&view=rev</a><br>
Log:<br>
test/Modules: Use FileCheck's -allow-empty instead of "count 0"<br>
<br>
Piping stderr into "count 0" in tests doesn't work - things like guard<br>
malloc write to stderr and mess up the count. This comes up all the<br>
time, so I've added a feature to FileCheck to fix it this time.<br></blockquote><div><br></div><div>Hah, thanks, I had an essentially identical patch to FileCheck that I was just about to mail out to support this test =)</div>
<div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Fixes test failures caused by r215046 under guard malloc.<br>
<br>
Modified:<br>
    cfe/trunk/test/Modules/Rmodule-build.m<br>
<br>
Modified: cfe/trunk/test/Modules/Rmodule-build.m<br>
URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Modules/Rmodule-build.m?rev=215129&r1=215128&r2=215129&view=diff" target="_blank">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Modules/Rmodule-build.m?rev=215129&r1=215128&r2=215129&view=diff</a><br>

==============================================================================<br>
--- cfe/trunk/test/Modules/Rmodule-build.m (original)<br>
+++ cfe/trunk/test/Modules/Rmodule-build.m Thu Aug  7 13:45:21 2014<br>
@@ -24,11 +24,14 @@<br>
<br>
 // RUN: echo ' ' >> %t/B.h<br>
 // RUN: %clang_cc1 -fmodules -fmodules-cache-path=%t -fsyntax-only %s -I %t \<br>
-// RUN:            2>&1 | count 0<br>
+// RUN:            2>&1 | FileCheck -allow-empty -check-prefix=NO-REMARKS %s<br>
<br>
 // RUN: echo ' ' >> %t/B.h<br>
 // RUN: %clang_cc1 -fmodules -fmodules-cache-path=%t -fsyntax-only %s -I %t \<br>
-// RUN:            -Rmodule-build -Rno-everything 2>&1 | count 0<br>
+// RUN:            -Rmodule-build -Rno-everything 2>&1 | \<br>
+// RUN:    FileCheck -allow-empty -check-prefix=NO-REMARKS %s<br>
<br>
 // CHECK-NOT: building module 'A'<br>
 // CHECK: building module 'B'<br>
+// NO-REMARKS-NOT: building module 'A'<br>
+// NO-REMARKS-NOT: building module 'B'<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></div>