Skip to content

Commit 4193679

Browse files
prattmicgopherbot
authored andcommitted
cmd/link: require cgo internal linking in TestIssue33979
This was a typo regression in CL 643897, which accidentally dropped the requirement for cgo internal linking. As a result, this test is continuously failing on windows-arm64. For #71395. Cq-Include-Trybots: luci.golang.try:gotip-windows-arm64 Change-Id: I6a6a636c25fd399cda6649ef94655aa112f10f63 Reviewed-on: https://go-review.googlesource.com/c/go/+/675015 Auto-Submit: Michael Pratt <[email protected]> Reviewed-by: Michael Knyszek <[email protected]> Reviewed-by: Quim Muntal <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]>
1 parent 360600b commit 4193679

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cmd/link/link_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ func TestIssue33979(t *testing.T) {
195195
testenv.MustHaveCGO(t)
196196
// N.B. go build below explictly doesn't pass through
197197
// -asan/-msan/-race, so we don't care about those.
198-
testenv.MustInternalLink(t, testenv.NoSpecialBuildTypes)
198+
testenv.MustInternalLink(t, testenv.SpecialBuildTypes{Cgo: true})
199199

200200
t.Parallel()
201201

0 commit comments

Comments
 (0)