1// +build !linux 2 3package test_build_constraints 4 5import ( 6 "runtime" 7 "testing" 8) 9 10func TestFooUnknown(t *testing.T) { 11 if runtime.GOOS == "linux" { 12 t.Errorf("got %s; want not linux", runtime.GOOS) 13 } 14} 15