)
func TestReadUnixgramWithUnnamedSocket(t *testing.T) {
+ if runtime.GOOS == "darwin" && (runtime.GOARCH == "arm" || runtime.GOARCH == "arm64") {
+ t.Skipf("skipping unixgram test on %s/%s", runtime.GOOS, runtime.GOARCH)
+ }
addr := testUnixAddr()
la, err := ResolveUnixAddr("unixgram", addr)
if err != nil {
}
func TestReadUnixgramWithZeroBytesBuffer(t *testing.T) {
+ if runtime.GOOS == "darwin" && (runtime.GOARCH == "arm" || runtime.GOARCH == "arm64") {
+ t.Skipf("skipping unixgram test on %s/%s", runtime.GOOS, runtime.GOARCH)
+ }
// issue 4352: Recvfrom failed with "address family not
// supported by protocol family" if zero-length buffer provided
}
func TestUnixgramWrite(t *testing.T) {
+ if runtime.GOOS == "darwin" && (runtime.GOARCH == "arm" || runtime.GOARCH == "arm64") {
+ t.Skipf("skipping unixgram test on %s/%s", runtime.GOOS, runtime.GOARCH)
+ }
addr := testUnixAddr()
laddr, err := ResolveUnixAddr("unixgram", addr)
if err != nil {
}
func TestUnixConnLocalAndRemoteNames(t *testing.T) {
+ if runtime.GOOS == "darwin" && (runtime.GOARCH == "arm" || runtime.GOARCH == "arm64") {
+ t.Skipf("skipping unixgram test on %s/%s", runtime.GOOS, runtime.GOARCH)
+ }
for _, laddr := range []string{"", testUnixAddr()} {
laddr := laddr
taddr := testUnixAddr()
}
func TestUnixgramConnLocalAndRemoteNames(t *testing.T) {
+ if runtime.GOOS == "darwin" && (runtime.GOARCH == "arm" || runtime.GOARCH == "arm64") {
+ t.Skipf("skipping unixgram test on %s/%s", runtime.GOOS, runtime.GOARCH)
+ }
for _, laddr := range []string{"", testUnixAddr()} {
laddr := laddr
taddr := testUnixAddr()