From 2d4bd3db7f0eb3d833453ae39079a5f2e5db2737 Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Wed, 28 Nov 2018 16:50:57 +0100 Subject: [PATCH] plugin: fix build constraint to disable test on linux/arm64 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 TryBot-Result: Gobot Gobot Reviewed-by: Andrew Bonventre --- src/plugin/plugin_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/plugin/plugin_test.go b/src/plugin/plugin_test.go index be742b8c6d..b334c5cf0e 100644 --- a/src/plugin/plugin_test.go +++ b/src/plugin/plugin_test.go @@ -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 -- 2.50.0