summaryrefslogtreecommitdiff
path: root/dev-lang/crystal/files/crystal-0.27.0-gentoo-tests-long-unix-2.patch
blob: 61cec14afcbc0b6167d79d6793de155f03c6f755 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--- 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|