blob: 61b5bfcd7521c4511481ca90d4b1c868d07ae60c [file] [log] [blame]
package test_build_constraints
import (
"runtime"
"testing"
)
func TestFooLinux(t *testing.T) {
if runtime.GOOS != "linux" {
t.Errorf("got %s; want linux", runtime.GOOS)
}
}