From: Alberto Donizetti Date: Tue, 5 Mar 2019 17:21:08 +0000 (+0100) Subject: test: skip mutex Unlock inlining tests on a few builders X-Git-Tag: go1.13beta1~1211 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=2f8d2427d9751ab5ebdc64ec68ee8e2c0252d8d4;p=gostls13.git test: skip mutex Unlock inlining tests on a few builders Fix builder breakage from CL 148958. This is an inlining test that should be skipped on -N -l. The inlining also doesn't happen on arm and wasm, so skip the test there too. Fixes the noopt builder, the linux-arm builder, and the wasm builder. Updates #30605 Change-Id: I06b90d595be7185df61db039dd225dc90d6f678f Reviewed-on: https://go-review.googlesource.com/c/go/+/165339 Reviewed-by: Brad Fitzpatrick --- diff --git a/test/inline_sync.go b/test/inline_sync.go index 271414d5f0..b25e56447b 100644 --- a/test/inline_sync.go +++ b/test/inline_sync.go @@ -1,4 +1,4 @@ -// +build !nacl,!386 +// +build !nacl,!386,!wasm,!arm,!gcflags_noopt // errorcheck -0 -m // Copyright 2019 The Go Authors. All rights reserved.