diff options
author | Ted Kremenek <kremenek@apple.com> | 2007-11-28 19:24:15 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2007-11-28 19:24:15 +0000 |
commit | efb71539a749649edfc5f581736404d6102620ad (patch) | |
tree | 3f96ba6188ff06f489d870694b899a15a26d3333 | |
parent | f387aeb13694d72fe1254021de2930796346903b (diff) |
Added the "Serialization" test directory to the set of tests executed.
Introduced a few line breaks to make the Makefile easier to read.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@44413 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/Makefile b/test/Makefile index 71427d57e2..91928cafb8 100644 --- a/test/Makefile +++ b/test/Makefile @@ -2,4 +2,7 @@ LEVEL = ../../.. include $(LEVEL)/Makefile.common all:: - PATH=$$PATH:$(ToolDir):$(LLVM_SRC_ROOT)/test/Scripts find CodeGen Lexer Preprocessor Parser Sema Analysis \( -name '*.c' -or -name '*.cpp' -or -name '*.m' \) -print -exec ./TestRunner.sh {} \; + PATH=$$PATH:$(ToolDir):$(LLVM_SRC_ROOT)/test/Scripts find\ + CodeGen Lexer Preprocessor Parser Sema Analysis Serialization\ + \( -name '*.c' -or -name '*.cpp' -or -name '*.m' \)\ + -print -exec ./TestRunner.sh {} \; |