[ARVADOS] updated: 8b4d5991f9d5691b9fa2898d6f60eef8dbfdf987
Git user
git at public.curoverse.com
Tue Mar 28 01:53:06 EDT 2017
Summary of changes:
services/fuse/tests/test_unmount.py | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
via 8b4d5991f9d5691b9fa2898d6f60eef8dbfdf987 (commit)
from 8cd68a569df236ff8e150a556cd8cd69169b113f (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
commit 8b4d5991f9d5691b9fa2898d6f60eef8dbfdf987
Author: Tom Clegg <tom at curoverse.com>
Date: Tue Mar 28 01:52:56 2017 -0400
11209: Test using ./bin/arv-mount from source dir.
diff --git a/services/fuse/tests/test_unmount.py b/services/fuse/tests/test_unmount.py
index 0a2837e..972edaa 100644
--- a/services/fuse/tests/test_unmount.py
+++ b/services/fuse/tests/test_unmount.py
@@ -17,14 +17,14 @@ class UnmountTest(IntegrationTest):
def test_replace(self):
subprocess.check_call(
- ['arv-mount', '--subtype', 'test', '--replace',
+ ['./bin/arv-mount', '--subtype', 'test', '--replace',
self.mnt])
subprocess.check_call(
- ['arv-mount', '--subtype', 'test', '--replace',
+ ['./bin/arv-mount', '--subtype', 'test', '--replace',
'--unmount-timeout', '10',
self.mnt])
subprocess.check_call(
- ['arv-mount', '--subtype', 'test', '--replace',
+ ['./bin/arv-mount', '--subtype', 'test', '--replace',
'--unmount-timeout', '10',
self.mnt,
'--exec', 'true'])
@@ -46,7 +46,7 @@ class UnmountTest(IntegrationTest):
mnt = self.tmp+'/'+d
mounts.append(mnt)
subprocess.check_call(
- ['arv-mount', '--subtype', 'test', mnt])
+ ['./bin/arv-mount', '--subtype', 'test', mnt])
# Wait for mounts to attach
deadline = time.time() + 10
@@ -55,7 +55,7 @@ class UnmountTest(IntegrationTest):
self.assertLess(time.time(), deadline)
self.assertEqual(mounts, self._mounted(mounts))
- subprocess.check_call(['arv-mount', '--unmount', self.tmp])
+ subprocess.check_call(['./bin/arv-mount', '--unmount', self.tmp])
self.assertEqual(mounts, self._mounted(mounts))
- subprocess.check_call(['arv-mount', '--unmount-all', self.tmp])
+ subprocess.check_call(['./bin/arv-mount', '--unmount-all', self.tmp])
self.assertEqual([], self._mounted(mounts))
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list