From: Russ Cox Date: Fri, 27 Oct 2017 03:11:32 +0000 (-0400) Subject: misc/cgo/testshared: disable TestTwoGopathShlibsGccgo X-Git-Tag: go1.10beta1~562 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=0129e0d6ea275bacbbeff0ce051798a929c6562c;p=gostls13.git misc/cgo/testshared: disable TestTwoGopathShlibsGccgo For #22224. Change-Id: Iae873fddc72a79a96a32eaeb5d4dd885eaf810cb Reviewed-on: https://go-review.googlesource.com/73851 Run-TryBot: Russ Cox TryBot-Result: Gobot Gobot Reviewed-by: Ian Lance Taylor --- diff --git a/misc/cgo/testshared/shared_test.go b/misc/cgo/testshared/shared_test.go index ef240c6aba..6c802684e6 100644 --- a/misc/cgo/testshared/shared_test.go +++ b/misc/cgo/testshared/shared_test.go @@ -647,6 +647,8 @@ func TestGoPathShlibGccgo(t *testing.T) { // library with gccgo, another GOPATH package that depends on the first and an // executable that links the second library. func TestTwoGopathShlibsGccgo(t *testing.T) { + t.Skip("golang.org/issue/22224") + gccgoContext := prepGccgo(t) libgoRE := regexp.MustCompile("libgo.so.[0-9]+")