From: Daniel Dunbar Date: Thu, 28 Aug 2008 23:28:16 +0000 (+0000) Subject: Allow 'make TESTDIRS=Sema' in test/ directory for only running a X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=852119ea9b8900b109de327a135cdcd6d1761394;p=clang Allow 'make TESTDIRS=Sema' in test/ directory for only running a subset of tests. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@55513 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Makefile b/test/Makefile index d0532e30b6..5d0825b2b6 100644 --- a/test/Makefile +++ b/test/Makefile @@ -1,8 +1,8 @@ LEVEL = ../../.. include $(LEVEL)/Makefile.common -# Test in all immediate subdirectories. -TESTDIRS = $(shell echo $(PROJ_SRC_DIR)/*/) +# Test in all immediate subdirectories if unset. +TESTDIRS ?= $(shell echo $(PROJ_SRC_DIR)/*/) # Only run rewriter tests on darwin. ifeq ($(OS),Darwin)