1package cgo_select 2 3import ( 4 "runtime" 5 "testing" 6) 7 8func TestGoos(t *testing.T) { 9 if got, want := goos, runtime.GOOS; got != want { 10 t.Errorf("got %s; want %s\n", got, want) 11 } 12} 13