[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/03: gnu: go-1.4: Skip test that fails due to time zone name change.
From: |
Leo Famulari |
Subject: |
02/03: gnu: go-1.4: Skip test that fails due to time zone name change. |
Date: |
Fri, 21 Oct 2016 23:13:11 +0000 (UTC) |
lfam pushed a commit to branch core-updates
in repository guix.
commit 4b0bac4b3ee6cd674b12557f397c35fadd640496
Author: Leo Famulari <address@hidden>
Date: Fri Oct 21 16:19:46 2016 -0400
gnu: go-1.4: Skip test that fails due to time zone name change.
* gnu/packages/golang.scm (go-1.4)[arguments]: Skip test "TestLoadFixed" in
'prebuild' phase.
---
gnu/packages/golang.scm | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index d5813d7..63e2186 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -114,6 +114,13 @@
("net/dial_test.go" "(.+)(TestDialTimeout.+)")
("os/os_test.go" "(.+)(TestHostname.+)")
("time/format_test.go" "(.+)(TestParseInSydney.+)")
+
+ ;; Tzdata 2016g changed the name of the time zone used in
this
+ ;; test, and the patch for Go 1.7 does not work for 1.4.3:
+ ;; https://github.com/golang/go/issues/17545
+ ;; https://github.com/golang/go/issues/17276
+ ("time/time_test.go" "(.+)(TestLoadFixed.+)")
+
("os/exec/exec_test.go" "(.+)(TestEcho.+)")
("os/exec/exec_test.go" "(.+)(TestCommandRelativeName.+)")
("os/exec/exec_test.go" "(.+)(TestCatStdin.+)")