1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
From: Iain Lane <iain@orangesquash.org.uk>
Date: Mon, 19 Mar 2018 15:25:17 +0000
Subject: gvfs-test: Increase timeout to 10s
In normal operation some operations - particularly unmounting - can take
quite a while. Let's give things a bit longer before giving up.
Patch originally by Andreas Hasenack <andreas.hasenack@canonical.com>
Bug: https://bugzilla.gnome.org/show_bug.cgi?id=794487
Bug: https://gitlab.gnome.org/GNOME/gvfs/-/issues/331
Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/gvfs/+bug/1713098
Forwarded: https://bugzilla.gnome.org/show_bug.cgi?id=794487
---
test/gvfs-test | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/test/gvfs-test b/test/gvfs-test
index 196deec..876ebde 100755
--- a/test/gvfs-test
+++ b/test/gvfs-test
@@ -176,7 +176,7 @@ class GvfsTestCase(unittest.TestCase):
def unmount(self, uri):
self.program_out_success(['gio', 'mount', '-u', uri])
- timeout = 5
+ timeout = 10
while timeout > 0:
(out, err) = self.program_out_err(['gio', 'mount', '-li'])
if not re.search('Mount.*' + uri, out):
@@ -265,7 +265,7 @@ class GvfsTestCase(unittest.TestCase):
def unmount_api(self, gfile):
'''Umount a mounted Gio.File using the Gio API
- This times out after 5 seconds.
+ This times out after 10 seconds.
'''
self.cb_result = None
@@ -282,7 +282,7 @@ class GvfsTestCase(unittest.TestCase):
mount.unmount_with_operation(Gio.MountUnmountFlags.NONE, None, None,
unmount_done, ml)
# ensure we are timing out
- GLib.timeout_add_seconds(5, lambda data: ml.quit(), None)
+ GLib.timeout_add_seconds(10, lambda data: ml.quit(), None)
ml.run()
self.assertNotEqual(self.cb_result, None, 'operation timed out')
|