From: qmuntal Date: Thu, 30 Mar 2023 08:45:21 +0000 (+0200) Subject: cmd/objdump: unskip TestDisasmExtld on Windows X-Git-Tag: go1.21rc1~1071 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=75317dee399b66eaf09b8e4f6c4f8c45ecdce1f3;p=gostls13.git 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 Reviewed-by: Bryan Mills Run-TryBot: Quim Muntal TryBot-Result: Gopher Robot Reviewed-by: Alex Brainman --- diff --git a/src/cmd/objdump/objdump_test.go b/src/cmd/objdump/objdump_test.go index 226e74d81e..3abfb1461c 100644 --- a/src/cmd/objdump/objdump_test.go +++ b/src/cmd/objdump/objdump_test.go @@ -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()