diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2008-08-20 00:38:03 +0000 |
---|---|---|
committer | Eli Friedman <eli.friedman@gmail.com> | 2008-08-20 00:38:03 +0000 |
commit | 9b20376c6cb1b69ced5fe104589aca3990afe180 (patch) | |
tree | 2678b6cec7560daff9db3084bfed1d0d142f44b5 | |
parent | ed7c618f849e2541b1d0288c43154937652c5b15 (diff) |
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
-rw-r--r-- | test/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
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) |