From: Ian Lance Taylor Date: Thu, 21 Jun 2018 19:01:54 +0000 (-0700) Subject: cmd/go: re-enable a couple of tests of gccgo X-Git-Tag: go1.11beta1~37 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=1507502ff2a9d18c90a293728773015804992752;p=gostls13.git cmd/go: re-enable a couple of tests of gccgo Updates #22472 Change-Id: I526d131f2ef8e0200f7a5634c75b31e0ee083f93 Reviewed-on: https://go-review.googlesource.com/120375 Run-TryBot: Ian Lance Taylor TryBot-Result: Gobot Gobot Reviewed-by: Brad Fitzpatrick --- diff --git a/src/cmd/go/go_test.go b/src/cmd/go/go_test.go index 8d486b7a77..cb4a1a04b9 100644 --- a/src/cmd/go/go_test.go +++ b/src/cmd/go/go_test.go @@ -799,7 +799,6 @@ func TestBuildComplex(t *testing.T) { tg.run("build", "-x", "-o", os.DevNull, "complex") if _, err := exec.LookPath("gccgo"); err == nil { - t.Skip("golang.org/issue/22472") tg.run("build", "-x", "-o", os.DevNull, "-compiler=gccgo", "complex") } } @@ -3084,7 +3083,6 @@ func TestIssue7573(t *testing.T) { if _, err := exec.LookPath("gccgo"); err != nil { t.Skip("skipping because no gccgo compiler found") } - t.Skip("golang.org/issue/22472") tg := testgo(t) defer tg.cleanup()