diff --git a/unix/syscall_freebsd_test.go b/unix/syscall_freebsd_test.go index 6171a017..cd13080a 100644 --- a/unix/syscall_freebsd_test.go +++ b/unix/syscall_freebsd_test.go @@ -7,6 +7,7 @@ package unix_test import ( + "os" "testing" "golang.org/x/sys/unix" @@ -15,6 +16,9 @@ import ( func TestSysctUint64(t *testing.T) { _, err := unix.SysctlUint64("vm.max_kernel_address") if err != nil { + if os.Getenv("GO_BUILDER_NAME") == "freebsd-386-gce101" { + t.Skipf("Ignoring known failing test (golang.org/issue/15186). Failed with: %v", err) + } t.Fatal(err) } }