From: nejucomo Date: Tue, 29 Jan 2008 05:39:13 +0000 (-0700) Subject: tahoe_fuse.py: system test: setup: fixed a bug in which the mointpoint was not create... X-Git-Tag: allmydata-tahoe-0.8.0~172 X-Git-Url: https://git.rkrishnan.org/?a=commitdiff_plain;h=597ab62d12135eee7013fa04d1d859e6df74b9ff;p=tahoe-lafs%2Ftahoe-lafs.git tahoe_fuse.py: system test: setup: fixed a bug in which the mointpoint was not created before mounting. --- diff --git a/contrib/fuse/runtests.py b/contrib/fuse/runtests.py index b33d82d6..c2567252 100644 --- a/contrib/fuse/runtests.py +++ b/contrib/fuse/runtests.py @@ -217,7 +217,9 @@ class SystemTest (object): def mount_fuse_layer(self): print 'Mounting fuse interface.' - mp = os.path.join(self.testroot, 'mointpoint') + mp = os.path.join(self.testroot, 'mountpoint') + os.mkdir(mp) + thispath = os.path.abspath(sys.argv[0]) thisdir = os.path.dirname(thispath) fusescript = os.path.join(thisdir, 'tahoe_fuse.py')