summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJens Georg <mail@jensge.org>2014-05-29 08:44:17 +0200
committerJens Georg <mail@jensge.org>2014-05-29 10:36:58 +0200
commitd5cb8feecb786ba5e6be505bf6f45150cbee2d17 (patch)
treea7d4ef2a8b93382b6bcd636c0fdb26b6f76ce6ea /tests
parentfafd47869cf146fa2ca9012f60148af2cff6aaa5 (diff)
downloadrygel-d5cb8feecb786ba5e6be505bf6f45150cbee2d17.tar.gz
tests: Bump timeouts
Reported by debian maintainers that it helps to pass thests on Hurd. Signed-off-by: Jens Georg <mail@jensge.org>
Diffstat (limited to 'tests')
-rw-r--r--tests/rygel-http-post-test.vala2
-rw-r--r--tests/rygel-user-config-test.vala2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/rygel-http-post-test.vala b/tests/rygel-http-post-test.vala
index fd92f84b..e92a92c0 100644
--- a/tests/rygel-http-post-test.vala
+++ b/tests/rygel-http-post-test.vala
@@ -105,7 +105,7 @@ public class Rygel.HTTPPostTest : GLib.Object {
var file = File.new_for_uri (MediaItem.URI);
FileUtils.remove (file.get_path ());
- Timeout.add_seconds (3, this.on_timeout);
+ Timeout.add_seconds (10, this.on_timeout);
this.server.message_received.connect (this.on_message_received);
this.client.completed.connect (this.on_client_completed);
diff --git a/tests/rygel-user-config-test.vala b/tests/rygel-user-config-test.vala
index 6f16b8f6..b45d6511 100644
--- a/tests/rygel-user-config-test.vala
+++ b/tests/rygel-user-config-test.vala
@@ -687,7 +687,7 @@ public class Rygel.UserConfigTest : GLib.Object {
foreach (var watch_data in watch_data_array) {
this.current_watch_data = watch_data;
- this.timeout_id = Timeout.add_seconds (2, () => {
+ this.timeout_id = Timeout.add_seconds (10, () => {
if (!this.current_watch_data.empty ()) {
this.current_watch_data.print_description ();
warning ("Test timed out and not all expected changes " +