Skip to content
Snippets Groups Projects
Verified Commit 762b0d3b authored by Praveen Arimbrathodiyil's avatar Praveen Arimbrathodiyil
Browse files

Refresh patches (remove patches no longer needed)

parent d2a54bd0
No related branches found
No related tags found
No related merge requests found
This test is failing on buildd only
Last-Update: 2020-09-27
--- a/test/cluster/client_options_test.rb
+++ b/test/cluster/client_options_test.rb
@@ -82,7 +82,7 @@
build_another_client(invalid_option: true)
end
- def test_client_works_even_if_so_many_unavailable_nodes_specified
+ def _test_client_works_even_if_so_many_unavailable_nodes_specified
min = 7000
max = min + Process.getrlimit(Process::RLIMIT_NOFILE).first / 3 * 2
nodes = (min..max).map { |port| "redis://127.0.0.1:#{port}" }
......@@ -6,12 +6,11 @@ Last-Update: 2020-09-27
--- a/test/distributed/commands_requiring_clustering_test.rb
+++ b/test/distributed/commands_requiring_clustering_test.rb
@@ -170,7 +170,7 @@
r.bitop(:xor, "{qux}foo^bar", "{qux}foo", "{qux}bar")
assert_equal "\x03", r.get("{qux}foo^bar")
r.bitop(:not, "{qux}~foo", "{qux}foo")
- assert_equal "\x9E", r.get("{qux}~foo")
+ #assert_equal "\x9E", r.get("{qux}~foo")
end
@@ -169,6 +169,6 @@
r.bitop(:xor, "{qux}foo^bar", "{qux}foo", "{qux}bar")
assert_equal "\x03", r.get("{qux}foo^bar")
r.bitop(:not, "{qux}~foo", "{qux}foo")
- assert_equal "\x9E".b, r.get("{qux}~foo")
+ #assert_equal "\x9E".b, r.get("{qux}~foo")
end
end
......@@ -8,7 +8,7 @@ Last-Update: 2020-09-27
--- a/Rakefile
+++ b/Rakefile
@@ -9,7 +9,7 @@
@@ -11,7 +11,7 @@
Rake::TestTask.new(group) do |t|
t.libs << "test"
t.libs << "lib"
......
use-system-redis.patch
disable-encoding-check.patch
disable-ssl-test.patch
use-system-libs.patch
disable-buildd-failed-test.patch
Description: Use system libs in tests
Use the libs which are in $LOAD_PATH instead of using the relative paths.
Author: Jongmin Kim <jmkim@pukyong.ac.kr>
Forwarded: not-needed
Last-Update: 2020-09-27
--- a/test/redis/synchrony_driver.rb
+++ b/test/redis/synchrony_driver.rb
@@ -3,8 +3,8 @@
require "em-synchrony"
require "em-synchrony/connection_pool"
-require_relative "../lib/redis"
-require_relative "../lib/redis/connection/synchrony"
+require_relative "redis"
+require_relative "redis/connection/synchrony"
require "helper"
......@@ -10,7 +10,7 @@ Last-Update: 2020-09-27
--- a/makefile
+++ b/makefile
@@ -1,18 +1,16 @@
-REDIS_BRANCH ?= 7.0
-REDIS_BRANCH ?= 7.2
ROOT_DIR :=$(shell dirname $(realpath $(firstword $(MAKEFILE_LIST))))
TMP := tmp
CONF := ${ROOT_DIR}/test/support/conf/redis-${REDIS_BRANCH}.conf
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment