Allow 'make TESTDIRS=Sema' in test/ directory for only running a

subset of tests.

llvm-svn: 55513
This commit is contained in:
Daniel Dunbar 2008-08-28 23:28:16 +00:00
parent d58f3e36d0
commit 5888e603c3
1 changed files with 2 additions and 2 deletions

View File

@ -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)