aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@golang.org>2018-06-21 12:01:54 -0700
committerIan Lance Taylor <iant@golang.org>2018-06-21 19:35:27 +0000
commit1507502ff2a9d18c90a293728773015804992752 (patch)
tree60b4a4007585f12cd66f8ca65a5856aab91d23b8
parent0a7ac93c27c9ade79fe0f66ae0bb81484c241ae5 (diff)
downloadgo-1507502ff2a9d18c90a293728773015804992752.tar.gz
go-1507502ff2a9d18c90a293728773015804992752.zip
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 <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
-rw-r--r--src/cmd/go/go_test.go2
1 files changed, 0 insertions, 2 deletions
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()