From: Tobias Klauser Date: Sun, 19 Jan 2020 19:05:15 +0000 (+0100) Subject: test: disable test for #36516 when cgo is not enabled X-Git-Tag: go1.14rc1~95 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=df2999ef43ea49ce1578137017949c0ee660608a;p=gostls13.git test: disable test for #36516 when cgo is not enabled CL 214679 added a -race test which shouldn't be run when cgo is not enabled. Fixes the nocgo builder. Change-Id: Iceddf802c4ef6c0de2c3a968e86342303d2d27d8 Reviewed-on: https://go-review.googlesource.com/c/go/+/215477 Run-TryBot: Tobias Klauser Reviewed-by: Brad Fitzpatrick Reviewed-by: Keith Randall TryBot-Result: Gobot Gobot --- diff --git a/test/fixedbugs/issue36516.go b/test/fixedbugs/issue36516.go index 1472d4c222..d4e28b636d 100644 --- a/test/fixedbugs/issue36516.go +++ b/test/fixedbugs/issue36516.go @@ -1,4 +1,4 @@ -// +build linux,amd64 +// +build cgo,linux,amd64 // run -race // Copyright 2020 The Go Authors. All rights reserved.