From: Chris Lattner Date: Thu, 12 Jul 2007 16:46:07 +0000 (+0000) Subject: don't pick up random stuff in .svn directories. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9623feb09f7c5987829f61570a485fb16b1ab378;p=clang 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 --- 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 {} \;