blob: 38d0f3c24c6e50e8665ff46a8c76939bfce08a9a [file] [log] [blame]
LEVEL = ../../..
include $(LEVEL)/Makefile.common
TESTDIRS := CodeGen Lexer Preprocessor Parser Sema Analysis Serialization
# Only run rewriter tests on darwin.
ifeq ($(OS),Darwin)
TESTDIRS += Rewriter Analysis-Apple
endif
all::
PATH=$$PATH:$(ToolDir):$(LLVM_SRC_ROOT)/test/Scripts VG=$(VG) \
find $(TESTDIRS) \( -name '*.c' -or -name '*.cpp' -or -name '*.m' \) \
-print -exec ./TestRunner.sh {} \;
clean::
@ rm -rf Output/
.PHONY: all clean