diff options
author | Andrew Trick <atrick@apple.com> | 2010-10-20 23:52:37 +0000 |
---|---|---|
committer | Andrew Trick <atrick@apple.com> | 2010-10-20 23:52:37 +0000 |
commit | 8cdb3f7d13cce89b3a404b371e370bbdde647549 (patch) | |
tree | 2bb22abe02bddb21c2d32c3135adf3e3280bbf75 /clang/test/Coverage/html-diagnostics.c | |
parent | 00f5266dbfa4b9f57cb8ba7f6138f167e73074c4 (diff) | |
download | bcm5719-llvm-8cdb3f7d13cce89b3a404b371e370bbdde647549.tar.gz bcm5719-llvm-8cdb3f7d13cce89b3a404b371e370bbdde647549.zip |
revert r116782 & r116793 to fix msvc9 buildbots
llvm-svn: 116976
Diffstat (limited to 'clang/test/Coverage/html-diagnostics.c')
-rw-r--r-- | clang/test/Coverage/html-diagnostics.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/clang/test/Coverage/html-diagnostics.c b/clang/test/Coverage/html-diagnostics.c index f9c4b54de3e..81b2cfa588e 100644 --- a/clang/test/Coverage/html-diagnostics.c +++ b/clang/test/Coverage/html-diagnostics.c @@ -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; |