diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 2018-05-04 01:41:22 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2018-05-04 01:41:22 +0000 |
commit | 28fc5502cffc8cc4bda8f61dbf8df90b21b5118d (patch) | |
tree | 625eabfbbb030a39eb38cdde82ecdc8770d08c06 /libgo | |
parent | 652293284321e34fa1d87ad70c28a854b5b47580 (diff) | |
download | gcc-28fc5502cffc8cc4bda8f61dbf8df90b21b5118d.zip gcc-28fc5502cffc8cc4bda8f61dbf8df90b21b5118d.tar.gz gcc-28fc5502cffc8cc4bda8f61dbf8df90b21b5118d.tar.bz2 |
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
From-SVN: r259919
Diffstat (limited to 'libgo')
-rw-r--r-- | libgo/go/cmd/go/go_test.go | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libgo/go/cmd/go/go_test.go b/libgo/go/cmd/go/go_test.go index f522854..2945418 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() |