aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorCherry Zhang <cherryyz@google.com>2020-10-24 20:58:38 -0400
committerCherry Zhang <cherryyz@google.com>2020-10-28 14:25:56 +0000
commitb85c2dd56c4ecc7bf445bd1615467ecd38598eee (patch)
tree04680f3f9dc562842a2e7cc7db3ed0eb9321e2ca /test
parent7c8d82e92be894fe02b1a0bee775cf803c6849c1 (diff)
downloadgo-b85c2dd56c4ecc7bf445bd1615467ecd38598eee.tar.gz
go-b85c2dd56c4ecc7bf445bd1615467ecd38598eee.zip
cmd/link: enable internal linking by default on darwin/arm64
With previous CLs, internal linking without cgo should work well. Enable it by default. And stop always requiring cgo. Enable tests that were previously disabled due to the lack of internal linking. Updates #38485. Change-Id: I45125b9c263fd21d6847aa6b14ecaea3a2989b29 Reviewed-on: https://go-review.googlesource.com/c/go/+/265121 Trust: Cherry Zhang <cherryyz@google.com> Reviewed-by: Austin Clements <austin@google.com> Reviewed-by: Than McIntosh <thanm@google.com>
Diffstat (limited to 'test')
-rw-r--r--test/fixedbugs/bug429_run.go4
-rw-r--r--test/fixedbugs/issue21576.go4
2 files changed, 0 insertions, 8 deletions
diff --git a/test/fixedbugs/bug429_run.go b/test/fixedbugs/bug429_run.go
index 60cc5b62de..c2bb1b85cb 100644
--- a/test/fixedbugs/bug429_run.go
+++ b/test/fixedbugs/bug429_run.go
@@ -1,10 +1,6 @@
// run
// +build !nacl,!js
-// +build !darwin !arm64
-
-// Skip on darwin/arm64 as it requires external linking, which brings in
-// cgo, causing deadlock detection not working.
// Copyright 2014 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
diff --git a/test/fixedbugs/issue21576.go b/test/fixedbugs/issue21576.go
index 3797a8c9ba..ae6161ccf5 100644
--- a/test/fixedbugs/issue21576.go
+++ b/test/fixedbugs/issue21576.go
@@ -1,10 +1,6 @@
// run
// +build !nacl,!js
-// +build !darwin !arm64
-
-// Skip on darwin/arm64 as it requires external linking, which brings in
-// cgo, causing deadlock detection not working.
// Copyright 2019 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style