go: cmd/go: tests timing out on aix builder
The cmd/go
tests are timing out on the aix/ppc4
builder:
https://build.golang.org/log/86480370eb2fba22d0f47458ad1fecf8ce9beea7
It looked similar to the Plan 9 failures reported in #29033 at first, but @bcmills suggested to track this in a different issue as the lockedfile
implementation for plan9
is different from the other platforms.
@Helflym mentioned in https://github.com/golang/go/issues/29033#issuecomment-443196871 that the timeout is only triggered on the builder, but not on a fresh install fetched from git. So there might be some issue with the builder.
Also, it seems the last few commits haven’t been built by the aix/ppc64 builder which also indicates some issue with the aix
builder.
/cc @bradfitz
About this issue
- Original URL
- State: closed
- Created 6 years ago
- Comments: 19 (17 by maintainers)
Commits related to this issue
- syscall, cmd/go/internal/lockedfile: remove Flock syscall for aix/ppc64 AIX doesn't provide flock() syscall, it was previously emulated by fcntl calls. However, there are some differences between a f... — committed to golang/go by deleted user 6 years ago
- dashboard: add /opt/freeware/bin to PATH on aix builder Updates golang/go#29065 Fixes golang/go#29078 Change-Id: Ifa9355c9dc988a460b6198913431647ec2c5e6ac Reviewed-on: https://go-review.googlesource... — committed to golang/build by tklauser 6 years ago
Great, thanks!
Let’s rename the file to
filelock_fcntl.go
. (I had originally named itfilelock_posix.go
but @rsc found that a bit confusing; see this comment.)Ok thanks. By the way, I have tried
solaris
version of filelock and it does work.