Re: [go-nuts] Go 1.7.3 is released

2016-10-23 Thread Reed O'Brien
create a branch from release-branch.go1.7 and cherry pick the fix (c5434f2973a87acf) if you can't wait. git branch 1.7.3-timefixed release-branch.go1.7 git checkout 1.7.3-timfixed git cherry-pick c5434f2973a87acf GOROOT_BOOTSTRAP=~/go143 ./all.bash Or something very close to the unverified line

Re: [go-nuts] Go 1.7.3 is released

2016-10-19 Thread Peter Kleiweg
Same problem here. Also, after the last package test cmd/vet/internal/cfg, all further tests are skipped. GOARCH="amd64" GOBIN="" GOEXE="" GOHOSTARCH="amd64" GOHOSTOS="linux" GOOS="linux" GOPATH="/net/aps/64/opt/gosite" GORACE="" GOROOT="/net/aps/64/opt/go" GOTOOLDIR="/net/aps/64/opt/go/pkg/tool/

Re: [go-nuts] Go 1.7.3 is released

2016-10-19 Thread Edward Muller
See: https://github.com/golang/go/issues/17519 & https://github.com/golang/go/issues/17276 On Wed, Oct 19, 2016 at 1:48 PM Tim Henderson wrote: > I can reproduce that error. Here is my `go env` output the test output is > identical. > > $ go env > GOARCH="amd64" > GOBIN="" > GOEXE="" > GOHOSTARC

Re: [go-nuts] Go 1.7.3 is released

2016-10-19 Thread Tim Henderson
I can reproduce that error. Here is my `go env` output the test output is identical. $ go env GOARCH="amd64" GOBIN="" GOEXE="" GOHOSTARCH="amd64" GOHOSTOS="linux" GOOS="linux" GOPATH="/home/hendersont/stuff/code/godev" GORACE="" GOROOT="/home/hendersont/srcs/go" GOTOOLDIR="/home/hendersont/srcs/

Re: [go-nuts] Go 1.7.3 is released

2016-10-19 Thread alb . donizetti
It *wasn't* backported. Il giorno mercoledì 19 ottobre 2016 22:17:51 UTC+2, alb.do...@gmail.com ha scritto: > > The time failure is Issue 17276. I patched it on tip > but it was backported in 1.7 > > Il giorno mercoledì 19 ottobre 2016 22:10:42 UTC+2, Jan Mercl ha scritto: >> >> On Wed, Oct 19, 2

Re: [go-nuts] Go 1.7.3 is released

2016-10-19 Thread alb . donizetti
The time failure is Issue 17276. I patched it on tip but it was backported in 1.7 Il giorno mercoledì 19 ottobre 2016 22:10:42 UTC+2, Jan Mercl ha scritto: > > On Wed, Oct 19, 2016 at 9:45 PM Chris Broadfoot > wrote: > > > We have just released Go version 1.7.3, a minor point release. > > Package

Re: [go-nuts] Go 1.7.3 is released

2016-10-19 Thread Michael Hudson-Doyle
That's https://github.com/golang/go/issues/17276, which if I'd been paying a bit more attention I'd have suggested go into 1.7.3 :( It's not an indicator of a real problem fortunately. Cheers, mwh On 20 October 2016 at 09:10, Jan Mercl <0xj...@gmail.com> wrote: > On Wed, Oct 19, 2016 at 9:45 PM

Re: [go-nuts] Go 1.7.3 is released

2016-10-19 Thread Jan Mercl
On Wed, Oct 19, 2016 at 9:45 PM Chris Broadfoot wrote: > We have just released Go version 1.7.3, a minor point release. Package time fails test. jnml@4670:~$ cd ~/go/src/ jnml@4670:~/go/src$ go env GOARCH="amd64" GOBIN="" GOEXE="" GOHOSTARCH="amd64" GOHOSTOS="linux" GOOS="linux" GOPATH="/home/j

[go-nuts] Go 1.7.3 is released

2016-10-19 Thread Chris Broadfoot
Hi gophers, We have just released Go version 1.7.3, a minor point release. This release includes fixes to the compiler, runtime, and the the crypto/cipher, crypto/tls, net/http, and strings packages. https://golang.org/doc/devel/release.html#go1.7.minor You can download binary and source dis