re PR go/78144 (FAIL: time on systems with tzdata2016g installed)
authorIan Lance Taylor <ian@gcc.gnu.org>
Fri, 28 Oct 2016 20:21:52 +0000 (20:21 +0000)
committerIan Lance Taylor <ian@gcc.gnu.org>
Fri, 28 Oct 2016 20:21:52 +0000 (20:21 +0000)
PR go/78144
    libgo: incorporate fix for timezone test

    This brings over the test-only fix for issue 17276 into gccgo/libgo
    (with tzdata-2016g there is a new zone abbreviation).  This is a
    copy of https://golang.org/cl/29995.

    Reviewed-on: https://go-review.googlesource.com/32182

From-SVN: r241661

gcc/go/gofrontend/MERGE
libgo/go/time/time_test.go

index 26f77ca69db1c9688222864f1d2fee0053d36197..e2fb0db49b80f2efdb4d667bd49a8c7baa7043c0 100644 (file)
@@ -1,4 +1,4 @@
-4a8df8f8622c140777996786866395448622ac3f
+5ddcdfb0b2bb992a70b391ab34bf15291a514e48
 
 The first line of this file holds the git revision number of the last
 merge done from the gofrontend repository.
index b7ebb372967169123d0ae5c67fc150965531f684..c9665ea04b5f347e6604189d8f55b9ea03305175 100644 (file)
@@ -939,8 +939,11 @@ func TestLoadFixed(t *testing.T) {
        // but Go and most other systems use "east is positive".
        // So GMT+1 corresponds to -3600 in the Go zone, not +3600.
        name, offset := Now().In(loc).Zone()
-       if name != "GMT+1" || offset != -1*60*60 {
-               t.Errorf("Now().In(loc).Zone() = %q, %d, want %q, %d", name, offset, "GMT+1", -1*60*60)
+       // The zone abbreviation is "-01" since tzdata-2016g, and "GMT+1"
+       // on earlier versions; we accept both. (Issue #17276).
+       if !(name == "GMT+1" || name == "-01") || offset != -1*60*60 {
+               t.Errorf("Now().In(loc).Zone() = %q, %d, want %q or %q, %d",
+                       name, offset, "GMT+1", "-01", -1*60*60)
        }
 }