]> Cypherpunks repositories - gostls13.git/commitdiff
cmd/objdump: unskip TestDisasmExtld on Windows
authorqmuntal <quimmuntal@gmail.com>
Thu, 30 Mar 2023 08:45:21 +0000 (10:45 +0200)
committerQuim Muntal <quimmuntal@gmail.com>
Fri, 31 Mar 2023 21:48:16 +0000 (21:48 +0000)
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>
src/cmd/objdump/objdump_test.go

index 226e74d81e8e1e1928348c8c93472c4915aecde9..3abfb1461c02f5769d8878b1019d94b7ff1b15e1 100644 (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()