xref: /aosp_15_r20/external/bazelbuild-rules_go/tests/legacy/cgo_select/cgo_select_test.go (revision 9bb1b549b6a84214c53be0924760be030e66b93a)
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