diff options
author | Gabor Greif <ggreif@gmail.com> | 2008-03-20 08:09:10 +0000 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2008-03-20 08:09:10 +0000 |
commit | 65307dcb28df1c84bf6654e48529cbd54df1d168 (patch) | |
tree | 9057b428d0f3ae9d7dd791452627f9626c34160a | |
parent | 0f1b67bc25058b71eacc0d9ef85075fff23e7b31 (diff) |
scan testdirs only once, patch by Mike Stump, thanks!
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@48589 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Makefile.parallel | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Makefile.parallel b/test/Makefile.parallel index e627b1c14d..2a8c857c86 100644 --- a/test/Makefile.parallel +++ b/test/Makefile.parallel @@ -18,7 +18,7 @@ REPORTFAIL = (echo; echo '----' $< 'failed ----') DONE = echo endif -TESTS = $(addprefix Output/, $(addsuffix .testresults, $(shell find $(TESTDIRS) \( -name '*.c' -or -name '*.cpp' -or -name '*.m' \)))) +TESTS := $(addprefix Output/, $(addsuffix .testresults, $(shell find $(TESTDIRS) \( -name '*.c' -or -name '*.cpp' -or -name '*.m' \)))) Output/%.testresults: % @ $(PROGRESS) |