aboutsummaryrefslogtreecommitdiff
path: root/tests/legacy/cgo_select/cgo_select_test.go
blob: 343de23a2d3332e92bceebeb158f43cdd969c9cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package cgo_select

import (
	"runtime"
	"testing"
)

func TestGoos(t *testing.T) {
	if got, want := goos, runtime.GOOS; got != want {
		t.Errorf("got %s; want %s\n", got, want)
	}
}