Get rid of the bogus -depth +0 argument; I really have no clue what the

heck it does on Darwin, but it's not part of POSIX, and the GNU version 
of find errors out on it.

On a side note, there are a couple of new failures due to tests 
including OS X specific headers.

llvm-svn: 55019
This commit is contained in:
Eli Friedman 2008-08-20 00:02:01 +00:00
parent e79740851f
commit 02d4a78688
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ LEVEL = ../../..
include $(LEVEL)/Makefile.common
# 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)
TESTDIRS = $(shell find . -name .svn -prune -o -name Output -prune -o -type d -print)
# Only run rewriter tests on darwin.
ifeq ($(OS),Darwin)