]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
Makefile: the timing for 'make tmpfstest' should exclude filesystem
authorDavid-Sarah Hopwood <david-sarah@jacaranda.org>
Wed, 12 Dec 2012 07:18:55 +0000 (07:18 +0000)
committerDaira Hopwood <daira@jacaranda.org>
Fri, 10 Jul 2015 04:23:03 +0000 (05:23 +0100)
mounting/unmounting and entering the password if needed.

Signed-off-by: David-Sarah Hopwood <david-sarah@jacaranda.org>
Makefile

index e513d3af0a531896795b6a7e2869570ad49194ef..6943b830d6cef91c2113b1703bfed5df2b2d65ef 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -76,12 +76,12 @@ TMPFS_SIZE = 500m
 
 .PHONY: tmpfstest
 tmpfstest:
-       time make _tmpfstest 'TMPDIR=$(shell mktemp -d --tmpdir=.)'
+       make _tmpfstest 'TMPDIR=$(shell mktemp -d --tmpdir=.)'
 
 .PHONY: _tmpfstest
 _tmpfstest: make-version
        sudo mount -t tmpfs -o size=$(TMPFS_SIZE) tmpfs '$(TMPDIR)'
-       -$(TAHOE) debug trial --rterrors '--temp-directory=$(TMPDIR)/_trial_temp' $(TRIALARGS) $(TEST)
+       -time $(TAHOE) debug trial --rterrors '--temp-directory=$(TMPDIR)/_trial_temp' $(TRIALARGS) $(TEST)
        sudo umount '$(TMPDIR)'
        rmdir '$(TMPDIR)'