From 9b20376c6cb1b69ced5fe104589aca3990afe180 Mon Sep 17 00:00:00 2001 From: Eli Friedman Date: Wed, 20 Aug 2008 00:38:03 +0000 Subject: [PATCH] Fix some spam from make I accidentally introduced. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@55027 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Makefile b/test/Makefile index 3de0538fb8..5971b61de0 100644 --- a/test/Makefile +++ b/test/Makefile @@ -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 -o -name Output -prune -o -type d -print) +TESTDIRS = $(shell find . -name . -o -name .svn -prune -o -name Output -prune -o -type d -print) # Only run rewriter tests on darwin. ifeq ($(OS),Darwin) -- 2.40.0