From 5cf052826f45f14bdffbb3b59b66243dcb132a5b Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Thu, 3 May 2018 03:19:28 +0000 Subject: [PATCH] cmd/go: run tests that require package build IDs These tests used to be disabled in the gofrontend since the go tool didn't support build IDs for the gofrontend. It does now, so enable the tests again. Reviewed-on: https://go-review.googlesource.com/111098 From-SVN: r259875 --- gcc/go/gofrontend/MERGE | 2 +- libgo/go/cmd/go/go_test.go | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/gcc/go/gofrontend/MERGE b/gcc/go/gofrontend/MERGE index 8de30a1c5a4..bb1f4eb3508 100644 --- a/gcc/go/gofrontend/MERGE +++ b/gcc/go/gofrontend/MERGE @@ -1,4 +1,4 @@ -cef3d77a3dc0207454aabdc3ef0e8f9a0ffdf32e +e367bffce3d2c49b456fdf41ab097bded2bcbc3b 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 c5a3d7b36bc..f5228541372 100644 --- a/libgo/go/cmd/go/go_test.go +++ b/libgo/go/cmd/go/go_test.go @@ -1034,7 +1034,6 @@ func TestGoInstallRebuildsStalePackagesInOtherGOPATH(t *testing.T) { } func TestGoInstallDetectsRemovedFiles(t *testing.T) { - skipIfGccgo(t, "gccgo does not yet support package build IDs") tg := testgo(t) defer tg.cleanup() tg.parallel() @@ -1104,7 +1103,6 @@ func TestGoInstallErrorOnCrossCompileToBin(t *testing.T) { } func TestGoInstallDetectsRemovedFilesInPackageMain(t *testing.T) { - skipIfGccgo(t, "gccgo does not yet support package build IDs") tooSlow(t) tg := testgo(t) defer tg.cleanup()