File: disable-ssl-test.patch

package info (click to toggle)
ruby-redis 3.3.5-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 796 kB
  • sloc: ruby: 8,509; sh: 24; makefile: 5
file content (17 lines) | stat: -rw-r--r-- 447 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Description: disable ssl tests
 These tests started failing with openssl 1.1
Author: Pirate Praveen <praveen@debian.org>

---
Forwarded: not-needed
Last-Update: 2018-10-12

--- ruby-redis-3.3.5.orig/Rakefile
+++ ruby-redis-3.3.5/Rakefile
@@ -84,5 +84,5 @@ end
 
 Rake::TestTask.new do |t|
   t.options = "-v" if $VERBOSE
-  t.test_files = FileList["test/*_test.rb"]
+  t.test_files = FileList["test/*_test.rb"] - FileList["test/ssl_test.rb"]
 end