aboutsummaryrefslogtreecommitdiff
path: root/tests/legacy/test_build_constraints/baz_linux_test.go
blob: f057ec62eb3caad0bf658794546252cf22e4ce3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package test_build_constraints

import (
	"runtime"
	"testing"
)

func TestBazLinux(t *testing.T) {
	if runtime.GOOS != "linux" {
		t.Errorf("got %s; want linux", runtime.GOOS)
	}
}