From 8b6b0f66a933df476dff89379101d6faddc59cf6 Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Mon, 18 Aug 2008 18:05:17 +0000 Subject: [PATCH] Change test/Makefile to automatically test all subdirs. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@54923 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/Makefile b/test/Makefile index 8164f2ee2c..c8404a07bf 100644 --- a/test/Makefile +++ b/test/Makefile @@ -1,7 +1,8 @@ LEVEL = ../../.. include $(LEVEL)/Makefile.common -TESTDIRS = CodeGen Lexer Preprocessor Parser Sema SemaCXX SemaObjC Analysis Serialization Rewriter +# Test in all non .svn or Output directories below this one. +TESTDIRS = $(shell find . -name .svn -prune -or -name Output -prune -or -type d -depth +0 -print) # Only run rewriter tests on darwin. ifeq ($(OS),Darwin) -- 2.40.0