1
0
mirror of https://github.com/golang/go synced 2024-11-16 21:14:44 -07:00

cmd/objdump: unskip TestDisasmExtld on Windows

Windows has supported external linking for a while, there is no
need to skip this test.

Change-Id: Ic3d0cc3441ee670767dae085db5e62fce205ff04
Reviewed-on: https://go-review.googlesource.com/c/go/+/480417
Reviewed-by: Cherry Mui <cherryyz@google.com>
Reviewed-by: Bryan Mills <bcmills@google.com>
Run-TryBot: Quim Muntal <quimmuntal@gmail.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Reviewed-by: Alex Brainman <alex.brainman@gmail.com>
This commit is contained in:
qmuntal 2023-03-30 10:45:21 +02:00 committed by Quim Muntal
parent bb44c2b54e
commit 75317dee39

View File

@ -273,7 +273,7 @@ func TestDisasmGnuAsm(t *testing.T) {
func TestDisasmExtld(t *testing.T) {
testenv.MustHaveCGO(t)
switch runtime.GOOS {
case "plan9", "windows":
case "plan9":
t.Skipf("skipping on %s", runtime.GOOS)
}
t.Parallel()