]> Cypherpunks repositories - gostls13.git/commitdiff
cmd/go: re-enable a couple of tests of gccgo
authorIan Lance Taylor <iant@golang.org>
Thu, 21 Jun 2018 19:01:54 +0000 (12:01 -0700)
committerIan Lance Taylor <iant@golang.org>
Thu, 21 Jun 2018 19:35:27 +0000 (19:35 +0000)
Updates #22472

Change-Id: I526d131f2ef8e0200f7a5634c75b31e0ee083f93
Reviewed-on: https://go-review.googlesource.com/120375
Run-TryBot: Ian Lance Taylor <iant@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
src/cmd/go/go_test.go

index 8d486b7a77108f7df3bea790ddd9ba953a8d406d..cb4a1a04b91d47e6d0dbcce6cd80ddd6352272ad 100644 (file)
@@ -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()