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