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