Commit 28fc5502 by Ian Lance Taylor

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
parent 65229328
bf6f714559bd7b27b7686811aaf0f6e8e7f1c0d5 12325f36d965e2ac3a4cbf787472ce24923327da
The first line of this file holds the git revision number of the last The first line of this file holds the git revision number of the last
merge done from the gofrontend repository. merge done from the gofrontend repository.
...@@ -3221,7 +3221,6 @@ func TestGoGetInternalWildcard(t *testing.T) { ...@@ -3221,7 +3221,6 @@ func TestGoGetInternalWildcard(t *testing.T) {
} }
func TestGoVetWithExternalTests(t *testing.T) { func TestGoVetWithExternalTests(t *testing.T) {
skipIfGccgo(t, "gccgo does not have vet")
tg := testgo(t) tg := testgo(t)
defer tg.cleanup() defer tg.cleanup()
tg.makeTempdir() tg.makeTempdir()
...@@ -3231,7 +3230,6 @@ func TestGoVetWithExternalTests(t *testing.T) { ...@@ -3231,7 +3230,6 @@ func TestGoVetWithExternalTests(t *testing.T) {
} }
func TestGoVetWithTags(t *testing.T) { func TestGoVetWithTags(t *testing.T) {
skipIfGccgo(t, "gccgo does not have vet")
tg := testgo(t) tg := testgo(t)
defer tg.cleanup() defer tg.cleanup()
tg.makeTempdir() tg.makeTempdir()
...@@ -3241,7 +3239,6 @@ func TestGoVetWithTags(t *testing.T) { ...@@ -3241,7 +3239,6 @@ func TestGoVetWithTags(t *testing.T) {
} }
func TestGoVetWithFlagsOn(t *testing.T) { func TestGoVetWithFlagsOn(t *testing.T) {
skipIfGccgo(t, "gccgo does not have vet")
tg := testgo(t) tg := testgo(t)
defer tg.cleanup() defer tg.cleanup()
tg.makeTempdir() tg.makeTempdir()
...@@ -3251,7 +3248,6 @@ func TestGoVetWithFlagsOn(t *testing.T) { ...@@ -3251,7 +3248,6 @@ func TestGoVetWithFlagsOn(t *testing.T) {
} }
func TestGoVetWithFlagsOff(t *testing.T) { func TestGoVetWithFlagsOff(t *testing.T) {
skipIfGccgo(t, "gccgo does not have vet")
tg := testgo(t) tg := testgo(t)
defer tg.cleanup() defer tg.cleanup()
tg.makeTempdir() tg.makeTempdir()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment