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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
From 6e6aa7de746b78bc5fc6d2cad1cac762f6d2205f Mon Sep 17 00:00:00 2001
From: Priit Laes <plaes@plaes.org>
Date: Tue, 3 Jul 2012 12:50:44 +0300
Subject: [PATCH] Gentoo: skip over gdbus-auth /gdbus/auth/*/DBUS_COOKIE_SHA1
tests
https://bugzilla.gnome.org/show_bug.cgi?id=679308
---
gio/tests/gdbus-auth.c | 9 +++++++++
1 files changed, 9 insertions(+), 0 deletions(-)
diff --git a/gio/tests/gdbus-auth.c b/gio/tests/gdbus-auth.c
index 737770e..9f42c24 100644
--- a/gio/tests/gdbus-auth.c
+++ b/gio/tests/gdbus-auth.c
@@ -89,11 +89,14 @@ auth_client_external (void)
auth_client_mechanism ("EXTERNAL");
}
+#if 0
+// https://bugzilla.gnome.org/show_bug.cgi?id=679308
static void
auth_client_dbus_cookie_sha1 (void)
{
auth_client_mechanism ("DBUS_COOKIE_SHA1");
}
+#endif
/* ---------------------------------------------------------------------------------------------------- */
@@ -250,11 +253,13 @@ auth_server_external (void)
auth_server_mechanism ("EXTERNAL");
}
+#if 0
static void
auth_server_dbus_cookie_sha1 (void)
{
auth_server_mechanism ("DBUS_COOKIE_SHA1");
}
+#endif
/* ---------------------------------------------------------------------------------------------------- */
@@ -272,10 +277,14 @@ main (int argc,
session_bus_up ();
g_test_add_func ("/gdbus/auth/client/EXTERNAL", auth_client_external);
+#if 0
g_test_add_func ("/gdbus/auth/client/DBUS_COOKIE_SHA1", auth_client_dbus_cookie_sha1);
+#endif
g_test_add_func ("/gdbus/auth/server/ANONYMOUS", auth_server_anonymous);
g_test_add_func ("/gdbus/auth/server/EXTERNAL", auth_server_external);
+#if 0
g_test_add_func ("/gdbus/auth/server/DBUS_COOKIE_SHA1", auth_server_dbus_cookie_sha1);
+#endif
ret = g_test_run();
--
1.7.8.6
|