From 381cf06672d6de939908b41914aefc65526a35b0 Mon Sep 17 00:00:00 2001 From: ian Date: Fri, 4 May 2018 01:41:22 +0000 Subject: [PATCH] cmd/go: enable tests of vet tool Since gofrontend does have the vet tool now, we can test it. Reviewed-on: https://go-review.googlesource.com/111095 git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@259919 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/go/gofrontend/MERGE | 2 +- libgo/go/cmd/go/go_test.go | 4 ---- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/gcc/go/gofrontend/MERGE b/gcc/go/gofrontend/MERGE index c45c9181ac4..c36b08ef214 100644 --- a/gcc/go/gofrontend/MERGE +++ b/gcc/go/gofrontend/MERGE @@ -1,4 +1,4 @@ -bf6f714559bd7b27b7686811aaf0f6e8e7f1c0d5 +12325f36d965e2ac3a4cbf787472ce24923327da The first line of this file holds the git revision number of the last merge done from the gofrontend repository. diff --git a/libgo/go/cmd/go/go_test.go b/libgo/go/cmd/go/go_test.go index f5228541372..294541800af 100644 --- a/libgo/go/cmd/go/go_test.go +++ b/libgo/go/cmd/go/go_test.go @@ -3221,7 +3221,6 @@ func TestGoGetInternalWildcard(t *testing.T) { } func TestGoVetWithExternalTests(t *testing.T) { - skipIfGccgo(t, "gccgo does not have vet") tg := testgo(t) defer tg.cleanup() tg.makeTempdir() @@ -3231,7 +3230,6 @@ func TestGoVetWithExternalTests(t *testing.T) { } func TestGoVetWithTags(t *testing.T) { - skipIfGccgo(t, "gccgo does not have vet") tg := testgo(t) defer tg.cleanup() tg.makeTempdir() @@ -3241,7 +3239,6 @@ func TestGoVetWithTags(t *testing.T) { } func TestGoVetWithFlagsOn(t *testing.T) { - skipIfGccgo(t, "gccgo does not have vet") tg := testgo(t) defer tg.cleanup() tg.makeTempdir() @@ -3251,7 +3248,6 @@ func TestGoVetWithFlagsOn(t *testing.T) { } func TestGoVetWithFlagsOff(t *testing.T) { - skipIfGccgo(t, "gccgo does not have vet") tg := testgo(t) defer tg.cleanup() tg.makeTempdir() -- 2.11.4.GIT