Commit 26985ed4 authored by Jordan Rhee's avatar Jordan Rhee Committed by Brad Fitzpatrick

cmd/nm: report windows/arm as relocatable in TestGoExec

Updates #26148

Change-Id: I704efafca39e4397caf2db0146d83d309c761dd1
Reviewed-on: https://go-review.googlesource.com/c/154357Reviewed-by: 's avatarBrad Fitzpatrick <bradfitz@golang.org>
Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
parent 281ce28c
......@@ -151,6 +151,9 @@ func testGoExec(t *testing.T, iscgo, isexternallinker bool) {
return true
}
}
if runtime.GOOS == "windows" && runtime.GOARCH == "arm" {
return true
}
return false
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment