1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
From 935302065af825f82fbbc3e6e93eb83f408c9121 Mon Sep 17 00:00:00 2001
From: Ruslan Osmanov <rrosmanov@gmail.com>
Date: Mon, 23 Apr 2018 15:15:29 +0700
Subject: [PATCH] Fixed tests/12-serialization.phpt
---
package.xml | 23 +++++++++++++++++++----
php5/php_event.h | 2 +-
php7/php_event.h | 2 +-
tests/12-serialization.phpt | 2 +-
4 files changed, 22 insertions(+), 7 deletions(-)
diff --git a/tests/12-serialization.phpt b/tests/12-serialization.phpt
index 2a8f15d..d5945df 100644
--- a/tests/12-serialization.phpt
+++ b/tests/12-serialization.phpt
@@ -22,7 +22,7 @@ $http_connection = new $eventHttpConnectionClass($base, null, "0.0.0.0", 9099);
$config = new $eventConfigClass;
if (class_exists($eventSslContextClass)) {
- $ssl_context = new $eventSslContextClass($eventSslContextClass::SSLv3_SERVER_METHOD, []);
+ $ssl_context = new $eventSslContextClass($eventSslContextClass::TLS_SERVER_METHOD, []);
serialize($ssl_context);
}
--
2.10.5
From 5827e342d81f196f35601a6227852e9a075f9df1 Mon Sep 17 00:00:00 2001
From: Ruslan Osmanov <rrosmanov@gmail.com>
Date: Mon, 23 Apr 2018 15:36:51 +0700
Subject: [PATCH] Fixed PHP 5.4-related issue in tests/12-serialization.phpt
---
tests/12-serialization.phpt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/12-serialization.phpt b/tests/12-serialization.phpt
index d5945df..e37b2b1 100644
--- a/tests/12-serialization.phpt
+++ b/tests/12-serialization.phpt
@@ -38,7 +38,7 @@ echo "1 - ok\n";
/////////////////////////////////////////////
-foreach ([ $base, $http, $http_request, $http_connection, $config, $listener ] as &$object) {
+foreach ([ $base, $http, $http_request, $http_connection, $config, $listener ] as $object) {
try {
serialize($object);
} catch (\Exception $e) {
--
2.10.5
|