Fixes #69406
Change-Id: I1c6b1498d87f94cc9196a933c13df1c3369e19a2
Reviewed-on: https://go-review.googlesource.com/c/go/+/610756
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Run-TryBot: Ian Lance Taylor <iant@golang.org>
Auto-Submit: Tim King <taking@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Auto-Submit: Ian Lance Taylor <iant@google.com>
Reviewed-by: Tim King <taking@google.com>
Reviewed-by: Ian Lance Taylor <iant@google.com>
wd, err := Getwd()
t.Logf("Getwd len: %d", len(wd))
if err != nil {
- // We can get an EPERM error if we can't read up
+ // We can get an EACCES error if we can't read up
// to root, which happens on the Android builders.
- if errors.Is(err, syscall.EPERM) {
- t.Logf("ignoring EPERM error: %v", err)
+ if errors.Is(err, syscall.EACCES) {
+ t.Logf("ignoring EACCES error: %v", err)
break
}
t.Fatal(err)