Stop looking for tests in the Output/ directory.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@75404 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Daniel Dunbar 2009-07-11 23:43:59 +00:00
Родитель 839fbc52fa
Коммит 060cad580b
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -1,8 +1,9 @@
LEVEL = ../../..
include $(LEVEL)/Makefile.common
# Test in all immediate subdirectories if unset.
TESTDIRS ?= $(shell echo $(PROJ_SRC_DIR)/*/)
# Test in all immediate subdirectories if unset (except for the .svn and Output
# directories).
TESTDIRS ?= $(shell find $(PROJ_SRC_DIR) -depth 1 -type d -not -name .svn -prune -and -not -name Output -prune)
ifndef TESTARGS
ifdef VERBOSE