xref: /aosp_15_r20/external/bazelbuild-rules_go/tests/legacy/test_build_constraints/baz_linux_test.go (revision 9bb1b549b6a84214c53be0924760be030e66b93a)
1package test_build_constraints
2
3import (
4	"runtime"
5	"testing"
6)
7
8func TestBazLinux(t *testing.T) {
9	if runtime.GOOS != "linux" {
10		t.Errorf("got %s; want linux", runtime.GOOS)
11	}
12}
13