diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2010-10-19 03:38:22 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2010-10-19 03:38:22 +0000 |
commit | 157c5bf8515f00ebbd770b53ebaf72bd54448c51 (patch) | |
tree | f79ceb915bd4d450fe25b6f7588e26aa88bc28d3 /test/Coverage/html-diagnostics.c | |
parent | 4eab39f0745fb1949dbb40c4145771b927888242 (diff) |
test/Coverage/html-diagnostics.c: Use find(1) to glob wildcards.
MSYS cat(1) does not expand wildcards.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@116793 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Coverage/html-diagnostics.c')
-rw-r--r-- | test/Coverage/html-diagnostics.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Coverage/html-diagnostics.c b/test/Coverage/html-diagnostics.c index be820fb90f..f9c4b54de3 100644 --- a/test/Coverage/html-diagnostics.c +++ b/test/Coverage/html-diagnostics.c @@ -1,6 +1,6 @@ // RUN: rm -rf %t // RUN: %clang_cc1 -analyze -analyzer-output=html -analyzer-check-objc-mem -o %t %s -// RUN: cat %t/*.html | FileCheck %s +// RUN: find %t -type f -name '*.html' -exec cat '{}' ';' | FileCheck %s // CHECK: <h3>Annotated Source Code</h3> |