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

import (
	"runtime"
	"testing"
)

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