You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-lang/crystal/files/crystal-0.27.0-gentoo-tests...

14 lines
469 B

--- a/spec/std/socket/unix_socket_spec.cr
+++ b/spec/std/socket/unix_socket_spec.cr
@@ -37,7 +37,9 @@ describe UNIXSocket do
end
end
- it "sync flag after accept" do
+ # On large non-standard temp paths the test fails as:
+ # Path size exceeds the maximum size of 107 bytes
+ pending "sync flag after accept" do
with_tempfile("unix_socket-accept.sock") do |path|
UNIXServer.open(path) do |server|
UNIXSocket.open(path) do |client|