From 157c5bf8515f00ebbd770b53ebaf72bd54448c51 Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Tue, 19 Oct 2010 03:38:22 +0000 Subject: [PATCH] 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 --- test/Coverage/html-diagnostics.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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

-- 2.40.0