sniper Fri Aug 29 05:05:12 2003 EDT
Modified files:
/php-src/tests/lang bug25145.phpt
Log:
- Skip with CLI
Index: php-src/tests/lang/bug25145.phpt
diff -u php-src/tests/lang/bug25145.phpt:1.1 php-src/tests/lang/bug25145.phpt:1.2
--- php-src/tests/lang/bug25145.phpt:1.1 Tue Aug 19 18:47:30 2003
+++ php-src/tests/lang/bug25145.phpt Fri Aug 29 05:05:11 2003
@@ -1,21 +1,22 @@
--TEST--
Bug #25145 (SEGV on recpt of form input with name like "123[]")
+--SKIPIF--
+<?php if (php_sapi_name() == 'cli') echo 'skip'; ?>
--GET--
123[]=SEGV
--FILE--
<?php
-print_r($_REQUEST);
+var_dump($_REQUEST);
echo "Done\n";
?>
--EXPECT--
-Array
-(
- [123] => Array
- (
- [0] => SEGV
- )
-
-)
+array(1) {
+ [123]=>
+ array(1) {
+ [0]=>
+ string(4) "SEGV"
+ }
+}
Done
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php