From 9623feb09f7c5987829f61570a485fb16b1ab378 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Thu, 12 Jul 2007 16:46:07 +0000 Subject: [PATCH] don't pick up random stuff in .svn directories. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@39783 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Makefile b/test/Makefile index 2c35b4421e..c92a14fc8d 100644 --- a/test/Makefile +++ b/test/Makefile @@ -1,3 +1,3 @@ all: - find Lexer Preprocessor Parser -name '*.c*' -print -exec ./TestRunner.sh {} \; + find Lexer Preprocessor Parser \( -name '*.c' -or -name '*.cpp' \) -print -exec ./TestRunner.sh {} \; -- 2.50.1