aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2007-01-17 07:59:14 +0000
committerReid Spencer <rspencer@reidspencer.com>2007-01-17 07:59:14 +0000
commitfb15c005bb6f42d0d81dd2493e385e6f62be547b (patch)
tree1385c6b7d81ae376450fef9739a8a90060679db4
parentd8a1728b5a9506deb45a62b7b7d8cc93578eac53 (diff)
Regression is gone, don't try to find it on clean target.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33296 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/Makefile b/test/Makefile
index 593caafc8a..eac56ab215 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -42,8 +42,7 @@ check-local:: site.exp
endif
clean::
- $(RM) -rf `find $(LLVM_OBJ_ROOT)/test/Regression -name Output -type d -print`
- $(RM) -rf `find $(LLVM_OBJ_ROOT)/test/Feature -name Output -type d -print`
+ $(RM) -rf `find $(LLVM_OBJ_ROOT)/test -name Output -type d -print`
site.exp: Makefile $(LLVM_OBJ_ROOT)/Makefile.config
@echo 'Making a new site.exp file...'