summaryrefslogtreecommitdiff
path: root/unittests
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2013-12-20 04:20:23 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2013-12-20 04:20:23 +0000
commite9e7e2cc70dfa3400109d0ba439a0a9e717074a0 (patch)
tree3dcabb17e7b81d4195c51fb0b90029675b1ad21d /unittests
parentff37ddf185761005c89f625a7a9897e8129114a8 (diff)
downloadllvm-e9e7e2cc70dfa3400109d0ba439a0a9e717074a0.tar.gz
llvm-e9e7e2cc70dfa3400109d0ba439a0a9e717074a0.tar.bz2
llvm-e9e7e2cc70dfa3400109d0ba439a0a9e717074a0.tar.xz
Makefile.unittest: cleanup may fail. Add '-' in the action.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@197777 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests')
-rw-r--r--unittests/Makefile.unittest2
1 files changed, 1 insertions, 1 deletions
diff --git a/unittests/Makefile.unittest b/unittests/Makefile.unittest
index bf3179d3f2..695bee6d89 100644
--- a/unittests/Makefile.unittest
+++ b/unittests/Makefile.unittest
@@ -18,7 +18,7 @@ endif
# Clean up out-of-tree stray unittests for Lit not to pick one up.
.PHONY: cleanup-local
cleanup-local:
- $(Verb) $(FIND) $(filter-out $(PARALLEL_DIRS), $(wildcard *)) -type f \
+ -$(Verb) $(FIND) $(filter-out $(PARALLEL_DIRS), $(wildcard *)) -type f \
-path '*/$(BuildMode)/*Tests$(EXEEXT)' \
-exec rm -f '{}' \;