mirror of
https://github.com/golang/go
synced 2024-11-19 03:54:42 -07:00
2d4bd3db7f
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>
19 lines
418 B
Go
19 lines
418 B
Go
// Copyright 2018 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// +build !nacl
|
|
// +build !linux linux,!arm64
|
|
|
|
package plugin_test
|
|
|
|
import (
|
|
_ "plugin"
|
|
"testing"
|
|
)
|
|
|
|
func TestPlugin(t *testing.T) {
|
|
// This test makes sure that executable that imports plugin
|
|
// package can actually run. See issue #28789 for details.
|
|
}
|