]> Cypherpunks repositories - gostls13.git/commitdiff
plugin: fix build constraint to disable test on linux/arm64
authorTobias Klauser <tklauser@distanz.ch>
Wed, 28 Nov 2018 15:50:57 +0000 (16:50 +0100)
committerAndrew Bonventre <andybons@golang.org>
Wed, 28 Nov 2018 18:14:20 +0000 (18:14 +0000)
CL 151478 was suppose to fix the build failure on linux/arm64 but the
build constraint didn't exclude linux/arm64 properly.

Fixes #28982

Change-Id: Ia80265b0adba0384cd28bc2deb1726418664975a
Reviewed-on: https://go-review.googlesource.com/c/151303
Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Andrew Bonventre <andybons@golang.org>
src/plugin/plugin_test.go

index be742b8c6df5eb979069bee0f0246d2333f2274c..b334c5cf0ec027d7983e24d12f7825a44cb28684 100644 (file)
@@ -2,7 +2,8 @@
 // Use of this source code is governed by a BSD-style
 // license that can be found in the LICENSE file.
 
-// +build !nacl !linux,arm64
+// +build !nacl
+// +build !linux linux,!arm64
 
 package plugin_test