From: Chris Lattner Date: Thu, 23 Aug 2007 01:09:45 +0000 (+0000) Subject: run .m files as tests X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e389201e394b4cf74da13126b74b868c17fcf572;p=clang run .m files as tests git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@41308 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Makefile b/test/Makefile index 8e083cf9fe..5a85584051 100644 --- a/test/Makefile +++ b/test/Makefile @@ -2,4 +2,4 @@ LEVEL = ../../.. include $(LEVEL)/Makefile.common all:: - PATH=$$PATH:$(ToolDir):$(LLVM_SRC_ROOT)/test/Scripts find CodeGen Lexer Preprocessor Parser Sema \( -name '*.c' -or -name '*.cpp' \) -print -exec ./TestRunner.sh {} \; + PATH=$$PATH:$(ToolDir):$(LLVM_SRC_ROOT)/test/Scripts find CodeGen Lexer Preprocessor Parser Sema \( -name '*.c' -or -name '*.cpp' -or -name '*.m' \) -print -exec ./TestRunner.sh {} \;