From baa467762cd111cbc62adfb1dedcb82b3343c425 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Thu, 9 Mar 2017 15:07:16 -0500 Subject: gnu: glib: Avoid failing test caused by changes in the time zone database. * gnu/packages/glib.scm (glib)[arguments]: Skip a failing test in 'disable-failing-tests' phase. --- gnu/packages/glib.scm | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'gnu') diff --git a/gnu/packages/glib.scm b/gnu/packages/glib.scm index 74905004e..45f4631f9 100644 --- a/gnu/packages/glib.scm +++ b/gnu/packages/glib.scm @@ -246,7 +246,12 @@ shared NFS home directories.") ("gio/tests/gdbus-unix-addresses.c" (;; Requires /etc/machine-id. - "/gdbus/x11-autolaunch"))))) + "/gdbus/x11-autolaunch")) + + ("glib/tests/gdatetime.c" + (;; Assumes that the Brasilian time zone is named 'BRT', + ;; which is no longer true as of tzdata-2017a. + "/GDateTime/new_full"))))) (and-map (lambda (x) (apply disable x)) failing-tests))))) ;; Note: `--docdir' and `--htmldir' are not honored, so work around it. -- cgit v1.3 for implementing 'guix deploy'. Jakob L. Kreuze
aboutsummaryrefslogtreecommitdiff
path: root/HACKING
blob: 1e0bddfaf4d91a897d45bdb5f64ac06944cd9834 (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