diff --git a/unix/syscall_unix_test.go b/unix/syscall_unix_test.go index f2c0ed8f..afe2dc75 100644 --- a/unix/syscall_unix_test.go +++ b/unix/syscall_unix_test.go @@ -975,7 +975,8 @@ func TestSendmsgBuffers(t *testing.T) { } n, oobn, recvflags, _, err := unix.RecvmsgBuffers(fds[1], bufs, nil, 0) if err != nil { - t.Fatal(err) + t.Error(err) + return } if n != 10 { t.Errorf("got %d bytes, want 10", n)