blob: 686ff0f26281cb718a65591edda5bb8453eb4dfd [file] [log] [blame]
// +build linux
package test_build_constraints
import (
"runtime"
"testing"
)
func TestBarLinux(t *testing.T) {
if runtime.GOOS != "linux" {
t.Errorf("got %s; want linux", runtime.GOOS)
}
}