From 113d1410ce6d89016fde83d441c6a6d4f65daa22 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. llvm-svn: 39783 --- clang/test/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/test/Makefile b/clang/test/Makefile index 2c35b4421e35..c92a14fc8d56 100644 --- a/clang/test/Makefile +++ b/clang/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 {} \;