felipe Sat, 01 Aug 2009 15:46:50 +0000 Revision: http://svn.php.net/viewvc?view=revision&revision=286627
Log: - Fixed tests Changed paths: U php/php-src/branches/PHP_5_3/ext/standard/tests/http/bug43510.phpt U php/php-src/trunk/ext/standard/tests/http/bug43510.phpt Modified: php/php-src/branches/PHP_5_3/ext/standard/tests/http/bug43510.phpt =================================================================== --- php/php-src/branches/PHP_5_3/ext/standard/tests/http/bug43510.phpt 2009-08-01 14:47:10 UTC (rev 286626) +++ php/php-src/branches/PHP_5_3/ext/standard/tests/http/bug43510.phpt 2009-08-01 15:46:50 UTC (rev 286627) @@ -26,31 +26,3 @@ --EXPECT-- string(1) "r" string(2) "rb" ---TEST-- -Bug #43510: stream_get_meta_data() does not return same mode as used in fopen ---SKIPIF-- -<?php require 'server.inc'; http_server_skipif('tcp://127.0.0.1:12342'); ?> ---FILE-- -<?php -require 'server.inc'; - -$responses = array( - "data://text/plain,HTTP/1.0 200 OK\r\n\r\n", - "data://text/plain,HTTP/1.0 200 OK\r\n\r\n", -); - -$pid = http_server("tcp://127.0.0.1:12342", $responses, $output); - -foreach(array('r', 'rb') as $mode) { - $fd = fopen('http://127.0.0.1:12342/', $mode, false); - $meta = stream_get_meta_data($fd); - var_dump($meta['mode']); - fclose($fd); -} - -http_server_kill($pid); - -?> ---EXPECT-- -string(1) "r" -string(2) "rb" Modified: php/php-src/trunk/ext/standard/tests/http/bug43510.phpt =================================================================== --- php/php-src/trunk/ext/standard/tests/http/bug43510.phpt 2009-08-01 14:47:10 UTC (rev 286626) +++ php/php-src/trunk/ext/standard/tests/http/bug43510.phpt 2009-08-01 15:46:50 UTC (rev 286627) @@ -26,59 +26,3 @@ --EXPECT-- string(1) "r" string(2) "rb" ---TEST-- -Bug #43510: stream_get_meta_data() does not return same mode as used in fopen ---SKIPIF-- -<?php require 'server.inc'; http_server_skipif('tcp://127.0.0.1:12342'); ?> ---FILE-- -<?php -require 'server.inc'; - -$responses = array( - "data://text/plain,HTTP/1.0 200 OK\r\n\r\n", - "data://text/plain,HTTP/1.0 200 OK\r\n\r\n", -); - -$pid = http_server("tcp://127.0.0.1:12342", $responses, $output); - -foreach(array('r', 'rb') as $mode) { - $fd = fopen('http://127.0.0.1:12342/', $mode, false); - $meta = stream_get_meta_data($fd); - var_dump($meta['mode']); - fclose($fd); -} - -http_server_kill($pid); - -?> ---EXPECT-- -string(1) "r" -string(2) "rb" ---TEST-- -Bug #43510: stream_get_meta_data() does not return same mode as used in fopen ---SKIPIF-- -<?php require 'server.inc'; http_server_skipif('tcp://127.0.0.1:12342'); ?> ---FILE-- -<?php -require 'server.inc'; - -$responses = array( - "data://text/plain,HTTP/1.0 200 OK\r\n\r\n", - "data://text/plain,HTTP/1.0 200 OK\r\n\r\n", -); - -$pid = http_server("tcp://127.0.0.1:12342", $responses, $output); - -foreach(array('r', 'rb') as $mode) { - $fd = fopen('http://127.0.0.1:12342/', $mode, false); - $meta = stream_get_meta_data($fd); - var_dump($meta['mode']); - fclose($fd); -} - -http_server_kill($pid); - -?> ---EXPECT-- -string(1) "r" -string(2) "rb"
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php