summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'www-servers/thin/files/thin-1.2.5-tests.patch')
-rw-r--r--www-servers/thin/files/thin-1.2.5-tests.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/www-servers/thin/files/thin-1.2.5-tests.patch b/www-servers/thin/files/thin-1.2.5-tests.patch
deleted file mode 100644
index ae65539d8aaf..000000000000
--- a/www-servers/thin/files/thin-1.2.5-tests.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-unchanged:
---- a/spec/request/processing_spec.rb
-+++ b/spec/request/processing_spec.rb
-@@ -44,6 +44,7 @@ describe Request, 'processing' do
- end
-
- it "should set body external encoding to ASCII_8BIT" do
-+ pending("Ruby 1.9 compatible implementations only") unless StringIO.instance_methods.include? :external_encoding
- Request.new.body.external_encoding.should == Encoding::ASCII_8BIT
- end
- end
-\ No newline at end of file
-only in patch2:
-unchanged:
---- a/spec/server_spec.rb
-+++ b/spec/server_spec.rb
-@@ -12,6 +12,10 @@ describe Server do
- end
-
- it "should set lower maximum_connections size when too large" do
-+ # root users under Linux will not have a limitation on maximum
-+ # connections, so we cannot really run this test under that
-+ # condition.
-+ pending("only for non-root users") if Process.euid == 0
- @server.maximum_connections = 100_000
- @server.config
- @server.maximum_connections.should < 100_000