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