From: Rob Browning Date: Sat, 21 Feb 2015 22:03:14 +0000 (-0600) Subject: Makefile: make t/tmp a real target X-Git-Tag: 0.27-rc2~7 X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=bup.git;a=commitdiff_plain;h=9a79b12527949d9108ffd0288a710793b0e46f28 Makefile: make t/tmp a real target Signed-off-by: Rob Browning --- diff --git a/Makefile b/Makefile index 23df79d..48ad75d 100644 --- a/Makefile +++ b/Makefile @@ -82,14 +82,15 @@ lib/bup/_version.py: ./format-subst.pl $@.pre >$@.new mv $@.new $@ +t/tmp: + mkdir t/tmp + runtests: all runtests-python runtests-cmdline -runtests-python: all - test -e t/tmp || mkdir t/tmp +runtests-python: all t/tmp TMPDIR="$(test_tmp)" $(PYTHON) wvtest.py t/t*.py lib/*/t/t*.py -runtests-cmdline: all - test -e t/tmp || mkdir t/tmp +runtests-cmdline: all t/tmp TMPDIR="$(test_tmp)" t/test-fuse.sh TMPDIR="$(test_tmp)" t/test-drecurse.sh TMPDIR="$(test_tmp)" t/test-cat-file.sh