Skip to content

Commit

Permalink
Test: temporarily disable specs
Browse files Browse the repository at this point in the history
  • Loading branch information
straight-shoota committed Oct 15, 2018
1 parent 89fd849 commit b32c8b8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ stats ?= ## Enable statistics output
progress ?= ## Enable progress output
threads ?= ## Maximum number of threads to use
debug ?= ## Add symbolic debug info
verbose ?= ## Run specs in verbose mode
verbose ?= true ## Run specs in verbose mode
junit_output ?= ## Directory to output junit results
static ?= ## Enable static linking

Expand Down
6 changes: 3 additions & 3 deletions spec/std/http/client/client_spec.cr
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ module HTTP
end
end

it "sends the host header ipv6 with brackets" do
pending "sends the host header ipv6 with brackets" do
server = HTTP::Server.new do |context|
context.response.print context.request.headers["Host"]
end
Expand All @@ -137,7 +137,7 @@ module HTTP
server.close
end

it "sends a 'connection: close' header on one-shot request" do
pending "sends a 'connection: close' header on one-shot request" do
server = HTTP::Server.new do |context|
context.response.print context.request.headers["connection"]
end
Expand All @@ -149,7 +149,7 @@ module HTTP
server.close
end

it "sends a 'connection: close' header on one-shot request with block" do
pending "sends a 'connection: close' header on one-shot request with block" do
server = HTTP::Server.new do |context|
context.response.print context.request.headers["connection"]
end
Expand Down
6 changes: 3 additions & 3 deletions spec/std/http/server/server_spec.cr
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ module HTTP
s2.close
end

it "binds to different ports" do
pending "binds to different ports" do
server = Server.new do |context|
context.response.print "Test Server (#{context.request.headers["Host"]?})"
end
Expand Down Expand Up @@ -399,7 +399,7 @@ module HTTP
end

describe "#bind_tls" do
it "binds SSL server context" do
pending "binds SSL server context" do
server = Server.new do |context|
context.response.puts "Test Server (#{context.request.headers["Host"]?})"
context.response.close
Expand Down Expand Up @@ -485,7 +485,7 @@ module HTTP
end
{% end %}

it "handles exception during SSL handshake (#6577)" do
pending "handles exception during SSL handshake (#6577)" do
server = SilentErrorHTTPServer.new do |context|
context.response.print "ok"
context.response.close
Expand Down

0 comments on commit b32c8b8

Please sign in to comment.