mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
all: remove scattered remnants of darwin/arm
This removes all conditions and conditional code (that I could find) that depended on darwin/arm. Fixes #35439 (since that only happened on darwin/arm) Fixes #37611. Change-Id: Ia4c32a5a4368ed75231075832b0b5bfb1ad11986 Reviewed-on: https://go-review.googlesource.com/c/go/+/227198 Run-TryBot: Austin Clements <austin@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Cherry Zhang <cherryyz@google.com>
This commit is contained in:
parent
da8591b61c
commit
f7e6ab44b4
50 changed files with 81 additions and 174 deletions
|
|
@ -70,7 +70,7 @@ func _() {
|
|||
// Thus this test also verifies that the Flock_t structure can be
|
||||
// roundtripped with F_SETLK and F_GETLK.
|
||||
func TestFcntlFlock(t *testing.T) {
|
||||
if runtime.GOOS == "darwin" && (runtime.GOARCH == "arm" || runtime.GOARCH == "arm64") {
|
||||
if runtime.GOOS == "darwin" && runtime.GOARCH == "arm64" {
|
||||
t.Skip("skipping; no child processes allowed on iOS")
|
||||
}
|
||||
flock := syscall.Flock_t{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue