summaryrefslogtreecommitdiff
path: root/gnu/packages/patches/glib-tests-homedir.patch
blob: 9232ca5e77794b5348c35f3d31c2d352e7481a0e (plain)
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
`g_get_home_dir' looks at /etc/passwd first, which fails in chroot builds.
The gdbus tests use it to lookup .dbus-keyrings, so they cannot run in our
chroot build environment.  Thus, disable them.

--- glib-2.34.3/gio/tests/gdbus-connection-flush.c	2013-01-16 17:29:46.000000000 +0100
+++ glib-2.34.3/gio/tests/gdbus-connection-flush.c	2013-01-16 17:29:47.000000000 +0100
@@ -373,10 +373,6 @@ main (int   argc,
   g_type_init ();
   g_test_init (&argc, &argv, NULL);
 
-  g_test_add ("/gdbus/connection/flush/busy", Fixture, NULL,
-              setup, test_flush_busy, teardown);
-  g_test_add ("/gdbus/connection/flush/idle", Fixture, NULL,
-              setup, test_flush_idle, teardown);
 
   ret = g_test_run();

--- glib-2.34.3/gio/tests/gdbus-peer.c	2013-01-16 17:38:09.000000000 +0100
+++ glib-2.34.3/gio/tests/gdbus-peer.c	2013-01-16 17:38:12.000000000 +0100
@@ -1828,11 +1828,6 @@ main (int   argc,
 
   g_test_add_func ("/gdbus/peer-to-peer", test_peer);
   g_test_add_func ("/gdbus/delayed-message-processing", delayed_message_processing);
-  g_test_add_func ("/gdbus/nonce-tcp", test_nonce_tcp);
-  g_test_add_func ("/gdbus/tcp-anonymous", test_tcp_anonymous);
-  g_test_add_func ("/gdbus/credentials", test_credentials);
-  g_test_add_func ("/gdbus/overflow", test_overflow);
-  g_test_add_func ("/gdbus/codegen-peer-to-peer", codegen_test_peer);
 
   ret = g_test_run();
 
--- glib-2.34.3/gio/tests/gdbus-exit-on-close.c	2013-01-16 17:49:25.000000000 +0100
+++ glib-2.34.3/gio/tests/gdbus-exit-on-close.c	2013-01-16 17:49:30.000000000 +0100
@@ -206,13 +206,6 @@ main (int   argc,
   g_type_init ();
   g_test_init (&argc, &argv, NULL);
 
-  for (i = 0; cases[i].name != NULL; i++)
-    {
-      gchar *name = g_strdup_printf ("/gdbus/exit-on-close/%s", cases[i].name);
-
-      g_test_add_data_func (name, &cases[i], test_exit_on_close);
-      g_free (name);
-    }
 
   return g_test_run();
 }

--- glib-2.34.3/gio/tests/gdbus-non-socket.c	2013-01-16 18:13:25.000000000 +0100
+++ glib-2.34.3/gio/tests/gdbus-non-socket.c	2013-01-16 18:13:27.000000000 +0100
@@ -294,7 +294,6 @@ main (int   argc,
   g_type_init ();
   g_test_init (&argc, &argv, NULL);
 
-  g_test_add_func ("/gdbus/non-socket", test_non_socket);
 
   ret = g_test_run();