Skip to content

Commit 6534d94

Browse files
committed
backend server no longer available
1 parent f8aa784 commit 6534d94

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

tests/XML_RPC2/phpBackend/client/faultFromPython.phpt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,15 @@ PHP Backend XML-RPC client against python server returning fault response
55
if (!function_exists('curl_init')) {
66
print "Skip no CURI extension available";
77
}
8-
8+
echo("skip : The python XMLRPC server is no longer available !");
9+
/**
910
$handle = @fopen("http://python.xmlrpc2test.sergiocarvalho.com:8765", "r");
1011
if (!$handle) {
1112
echo("skip : The python XMLRPC server is not available !");
1213
} else {
1314
fclose($handle);
1415
}
16+
**/
1517
?>
1618
--FILE--
1719
<?php

tests/XML_RPC2/phpBackend/client/okFromPython.phpt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,15 @@ PHP Backend XML-RPC client against python server returning normal response
55
if (!function_exists('curl_init')) {
66
print "Skip no CURI extension available";
77
}
8+
echo("skip : The python XMLRPC server is no longer available !");
9+
/**
810
$handle = @fopen("http://python.xmlrpc2test.sergiocarvalho.com:8765", "r");
911
if (!$handle) {
1012
echo("skip : The python XMLRPC server is not available !");
1113
} else {
1214
fclose($handle);
1315
}
16+
**/
1417
?>
1518
--FILE--
1619
<?php

tests/XML_RPC2/xmlrpcextBackend/client/faultFromPython.phpt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,15 @@ XMLRPCext Backend XML-RPC client against python server returning fault response
55
if (!function_exists('xmlrpc_server_create')) {
66
print "Skip XMLRPC extension unavailable";
77
}
8-
8+
echo("skip : The python XMLRPC server is no longer available !");
9+
/**
910
$handle = @fopen("http://python.xmlrpc2test.sergiocarvalho.com:8765", "r");
1011
if (!$handle) {
1112
echo("skip : The python XMLRPC server is not available !");
1213
} else {
1314
fclose($handle);
1415
}
16+
**/
1517
?>
1618
--FILE--
1719
<?php

tests/XML_RPC2/xmlrpcextBackend/client/okFromPython.phpt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,15 @@ XMLRPCext Backend XML-RPC client against python server returning normal response
55
if (!function_exists('xmlrpc_server_create')) {
66
print "Skip XMLRPC extension unavailable";
77
}
8-
8+
echo("skip : The python XMLRPC server is no longer available !");
9+
/**
910
$handle = @fopen("http://python.xmlrpc2test.sergiocarvalho.com:8765", "r");
1011
if (!$handle) {
1112
echo("skip : The python XMLRPC server is not available !");
1213
} else {
1314
fclose($handle);
1415
}
16+
**/
1517
?>
1618
--FILE--
1719
<?php

0 commit comments

Comments
 (0)