tahoe_fuse.py: system test: setup: fixed a bug in which the mointpoint was not created before mounting.

This commit is contained in:
nejucomo 2008-01-28 22:39:13 -07:00
parent 7fe264d280
commit 597ab62d12

View File

@ -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')