summaryrefslogtreecommitdiff
path: root/libgo/go/cmd
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@gcc.gnu.org>2018-06-21 23:02:25 +0000
committerIan Lance Taylor <ian@gcc.gnu.org>2018-06-21 23:02:25 +0000
commit27fbc519e01f3fd9d7c449074cac5af156cf5521 (patch)
tree3e174c95e61a16bb5eb9c5afe28ebf4ad7bb3da6 /libgo/go/cmd
parented044066ac73d9678ae8fabc141f647b54ed91c2 (diff)
cmd/go: re-enable a couple of tests of gccgo
Port https://golang.org/cl/120375 over to the gofrontend repo so that it gets more reliable testing. Updates golang/go#22472 Reviewed-on: https://go-review.googlesource.com/120395 From-SVN: r261871
Diffstat (limited to 'libgo/go/cmd')
-rw-r--r--libgo/go/cmd/go/go_test.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/libgo/go/cmd/go/go_test.go b/libgo/go/cmd/go/go_test.go
index f6d6f4250eb..20606d813e6 100644
--- a/libgo/go/cmd/go/go_test.go
+++ b/libgo/go/cmd/go/go_test.go
@@ -791,7 +791,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")
}
}
@@ -2944,7 +2943,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()