From 87c7dcbd5db6be1a938380ce9944ed2299806701 Mon Sep 17 00:00:00 2001 From: Alan Donovan Date: Mon, 13 Aug 2018 13:45:06 -0400 Subject: [PATCH] cmd/callgraph: temporarily disable failing tests on go1.10 go1.10 and earlier versions of go list do not report test main packages. Furthermore, go/packages has errors in its Imports under go1.10. The long-term fix is for go/packages to synthesize test main packages when working with older versions of the go command, but in the meantime we will disable the tests. Updates golang/go#11811 Change-Id: Ifd5e37d5b68a01134e911fda90e30a39fc25b88d Reviewed-on: https://go-review.googlesource.com/129175 Reviewed-by: Brad Fitzpatrick --- cmd/callgraph/main_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/callgraph/main_test.go b/cmd/callgraph/main_test.go index d5aa3230..1d286193 100644 --- a/cmd/callgraph/main_test.go +++ b/cmd/callgraph/main_test.go @@ -5,6 +5,7 @@ // No testdata on Android. // +build !android +// +build go1.11 package main