WTF!??? How did THAT happen?! I tested the damn thing before committing. And it did work in all branches. Something borked in SVN again..?

--Jani

--- 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

Reply via email to