X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=Makefile;h=a024dbeef1135db8e47f7b5e8c0522847d5b7ebd;hb=5eaca519f7243d2f19e64a5c671316507628f450;hp=9b4678efdbaf2600d9c218b2d74c12fe16684f32;hpb=45b0fe8cf5ba321548acf38ea8a3b23dbee47707;p=bup.git diff --git a/Makefile b/Makefile index 9b4678e..a024dbe 100644 --- a/Makefile +++ b/Makefile @@ -13,8 +13,7 @@ else test_tmp := $(CURDIR)/t/tmp endif -default: all - +.PHONY: all all: bup Documentation/all t/configure-sampledata --setup @@ -76,48 +75,60 @@ lib/bup/_helpers$(SOEXT): \ LDFLAGS="$(LDFLAGS)" CFLAGS="$(CFLAGS)" $(PYTHON) csetup.py build cp lib/bup/build/*/_helpers$(SOEXT) lib/bup/ +# This must be completely atomic since it may be run (often) in +# parallel when "-j" is specified, either via targets here, or via +# tests that use an install tree as data. .PHONY: lib/bup/_version.py lib/bup/_version.py: - rm -f $@ $@.new - ./format-subst.pl $@.pre >$@.new - mv $@.new $@ + rm -f $@.tmp-$$$$ \ + && ./format-subst.pl $@.pre > $@.tmp-$$$$ \ + && (if ! test -e $@ || ! cmp $@ $@.tmp-$$$$; then mv $@.tmp-$$$$ $@; fi) \ + && rm -f $@.tmp-$$$$ + +t/tmp: + mkdir t/tmp -runtests: all runtests-python runtests-cmdline +runtests: 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 - TMPDIR="$(test_tmp)" t/test-fuse.sh - TMPDIR="$(test_tmp)" t/test-drecurse.sh - TMPDIR="$(test_tmp)" t/test-cat-file.sh - TMPDIR="$(test_tmp)" t/test-compression.sh - TMPDIR="$(test_tmp)" t/test-fsck.sh - TMPDIR="$(test_tmp)" t/test-index-clear.sh - TMPDIR="$(test_tmp)" t/test-index-check-device.sh - TMPDIR="$(test_tmp)" t/test-ls.sh - TMPDIR="$(test_tmp)" t/test-meta.sh - TMPDIR="$(test_tmp)" t/test-on.sh - TMPDIR="$(test_tmp)" t/test-restore-map-owner.sh - TMPDIR="$(test_tmp)" t/test-restore-single-file.sh - TMPDIR="$(test_tmp)" t/test-rm-between-index-and-save.sh - TMPDIR="$(test_tmp)" t/test-sparse-files.sh - TMPDIR="$(test_tmp)" t/test-command-without-init-fails.sh - TMPDIR="$(test_tmp)" t/test-redundant-saves.sh - TMPDIR="$(test_tmp)" t/test-save-creates-no-unrefs.sh - TMPDIR="$(test_tmp)" t/test-save-restore-excludes.sh - TMPDIR="$(test_tmp)" t/test-save-strip-graft.sh - TMPDIR="$(test_tmp)" t/test-import-rdiff-backup.sh - TMPDIR="$(test_tmp)" t/test-xdev.sh - TMPDIR="$(test_tmp)" t/test.sh +cmdline_tests := \ + t/test-fuse.sh \ + t/test-drecurse.sh \ + t/test-cat-file.sh \ + t/test-compression.sh \ + t/test-fsck.sh \ + t/test-index-clear.sh \ + t/test-index-check-device.sh \ + t/test-ls.sh \ + t/test-meta.sh \ + t/test-on.sh \ + t/test-restore-map-owner.sh \ + t/test-restore-single-file.sh \ + t/test-rm-between-index-and-save.sh \ + t/test-sparse-files.sh \ + t/test-command-without-init-fails.sh \ + t/test-redundant-saves.sh \ + t/test-save-creates-no-unrefs.sh \ + t/test-save-restore-excludes.sh \ + t/test-save-strip-graft.sh \ + t/test-import-duplicity.sh \ + t/test-import-rdiff-backup.sh \ + t/test-xdev.sh \ + t/test.sh + +# For parallel runs. +tmp-target-run-test-%: all t/tmp + TMPDIR="$(test_tmp)" t/test-$* + +runtests-cmdline: $(subst t/test-,tmp-target-run-test-,$(cmdline_tests)) stupid: PATH=/bin:/usr/bin $(MAKE) test test: all - ./wvtestrun $(MAKE) PYTHON=$(PYTHON) runtests + ./wvtestrun $(MAKE) PYTHON=$(PYTHON) runtests-python runtests-cmdline check: test @@ -129,14 +140,6 @@ cmd/bup-%: cmd/%-cmd.py rm -f $@ ln -s $*-cmd.py $@ -%: %.py - rm -f $@ - ln -s $< $@ - -bup-%: cmd-%.sh - rm -f $@ - ln -s $< $@ - cmd/bup-%: cmd/%-cmd.sh rm -f $@ ln -s $*-cmd.sh $@ @@ -174,7 +177,9 @@ clean: Documentation/clean config/clean rm -f *.o lib/*/*.o *.so lib/*/*.so *.dll lib/*/*.dll *.exe \ .*~ *~ */*~ lib/*/*~ lib/*/*/*~ \ *.pyc */*.pyc lib/*/*.pyc lib/*/*/*.pyc \ - bup bup-* cmd/bup-* lib/bup/_version.py randomgen memtest \ + bup bup-* cmd/bup-* \ + lib/bup/_version.py lib/bup/_version.py.tmp-* \ + randomgen memtest \ testfs.img lib/bup/t/testfs.img if test -e t/mnt; then t/cleanup-mounts-under t/mnt; fi if test -e t/mnt; then rm -r t/mnt; fi