summaryrefslogtreecommitdiffstats
path: root/redis-tests.patch
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2018-02-08 05:51:20 +0100
committerRemi Collet <remi@remirepo.net>2018-02-08 05:51:20 +0100
commitbfabdcf824f76d9b24cee465805cb18cc97db006 (patch)
tree6b6a759ada346ca79a6abe5bc1528ff4234d296f /redis-tests.patch
parent437fd6634ee109b590c5ccc1fdf242d97d9d1cfa (diff)
add patch to skip online test from
https://github.com/phpredis/phpredis/pull/1304
Diffstat (limited to 'redis-tests.patch')
-rw-r--r--redis-tests.patch28
1 files changed, 28 insertions, 0 deletions
diff --git a/redis-tests.patch b/redis-tests.patch
new file mode 100644
index 0000000..07dbb42
--- /dev/null
+++ b/redis-tests.patch
@@ -0,0 +1,28 @@
+From 627bd89b45ba09b689e692a23370e5d82d9829a1 Mon Sep 17 00:00:00 2001
+From: Remi Collet <remi@remirepo.net>
+Date: Thu, 8 Feb 2018 05:47:28 +0100
+Subject: [PATCH] skip online test
+
+---
+ tests/RedisTest.php | 6 +++++-
+ 1 file changed, 5 insertions(+), 1 deletion(-)
+
+diff --git a/tests/RedisTest.php b/tests/RedisTest.php
+index 4c0b7884..4d807a78 100644
+--- a/tests/RedisTest.php
++++ b/tests/RedisTest.php
+@@ -5164,9 +5164,13 @@ public function testMultipleConnect() {
+ }
+
+ public function testConnectException() {
++ $host = 'github.com';
++ if (gethostbyname($host) === $host) {
++ return $this->markTestSkipped('online test');
++ }
+ $redis = new Redis();
+ try {
+- $redis->connect('github.com', 6379, 0.01);
++ $redis->connect($host, 6379, 0.01);
+ } catch (Exception $e) {
+ $this->assertTrue(strpos($e, "timed out") !== false);
+ }