[cfe-commits] r116976 - /cfe/trunk/test/Coverage/html-diagnostics.c

Andrew Trick atrick at apple.com
Wed Oct 20 16:52:37 PDT 2010


Author: atrick
Date: Wed Oct 20 18:52:37 2010
New Revision: 116976

URL: http://llvm.org/viewvc/llvm-project?rev=116976&view=rev
Log:
revert r116782 & r116793 to fix msvc9 buildbots

Modified:
    cfe/trunk/test/Coverage/html-diagnostics.c

Modified: cfe/trunk/test/Coverage/html-diagnostics.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Coverage/html-diagnostics.c?rev=116976&r1=116975&r2=116976&view=diff
==============================================================================
--- cfe/trunk/test/Coverage/html-diagnostics.c (original)
+++ cfe/trunk/test/Coverage/html-diagnostics.c Wed Oct 20 18:52:37 2010
@@ -1,12 +1,9 @@
 // RUN: rm -rf %t
 // RUN: %clang_cc1 -analyze -analyzer-output=html -analyzer-check-objc-mem -o %t %s
-// RUN: find %t -type f -name '*.html' -exec cat '{}' ';' | FileCheck %s
+// RUN: cat %t/*.html | FileCheck %s
 
 // CHECK: <h3>Annotated Source Code</h3>
-
-// Without tweaking expr, the expr would hit to the line below
-// emitted to the output as comment.
-// CHECK: {{[D]ereference of null pointer}}
+// CHECK: Dereference of null pointer
 
 void f0(int x) {
   int *p = &x;





More information about the cfe-commits mailing list