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.26.0-gentoo-tests...

24 lines
905 B

--- a/spec/std/http/server/server_spec.cr
+++ b/spec/std/http/server/server_spec.cr
@@ -381,7 +381,9 @@ module HTTP
end
describe "#bind_ssl" do
- it "binds SSL server context" do
+ # gentoo's FEATURES=network-sandbox blocks external network:
+ # connect: Connection timed out (Errno)
+ pending "binds SSL server context" do
server = Server.new do |context|
context.response.puts "Test Server (#{context.request.headers["Host"]?})"
context.response.close
--- a/spec/std/http/web_socket_spec.cr
+++ b/spec/std/http/web_socket_spec.cr
@@ -335,4 +335,6 @@ describe HTTP::WebSocket do
end
- it "negotiates over HTTPS correctly" do
+ # gentoo's FEATURES=network-sandbox blocks external network:
+ # connect: Connection timed out (Errno)
+ pending "negotiates over HTTPS correctly" do
address_chan = Channel(Socket::IPAddress).new