From: NAKAMURA Takumi Date: Tue, 19 Oct 2010 03:38:22 +0000 (+0000) Subject: test/Coverage/html-diagnostics.c: Use find(1) to glob wildcards. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=157c5bf8515f00ebbd770b53ebaf72bd54448c51;p=clang 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 --- 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:

Annotated Source Code