aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/pkg/exp/types/gcimporter_test.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/pkg/exp/types/gcimporter_test.go b/src/pkg/exp/types/gcimporter_test.go
index 20247b0dc4..c39b47b062 100644
--- a/src/pkg/exp/types/gcimporter_test.go
+++ b/src/pkg/exp/types/gcimporter_test.go
@@ -92,6 +92,13 @@ func testDir(t *testing.T, dir string, endTime time.Time) (nimports int) {
}
func TestGcImport(t *testing.T) {
+ // Dies trying to read crypto/md5, which contains
+ // const init1 = 0x...
+ // The importer believes init1 should be a function for some reason.
+ // golang.org/issue/3682.
+ t.Logf("broken; skipping")
+ return
+
// On cross-compile builds, the path will not exist.
// Need to use GOHOSTOS, which is not available.
if _, err := os.Stat(gcPath); err != nil {