]> granicus.if.org Git - php/commitdiff
cosmetic improvements
authorAntony Dovgal <tony2001@php.net>
Tue, 5 Dec 2006 23:03:19 +0000 (23:03 +0000)
committerAntony Dovgal <tony2001@php.net>
Tue, 5 Dec 2006 23:03:19 +0000 (23:03 +0000)
ext/standard/tests/array/bug33382.phpt
ext/standard/tests/array/bug36975.phpt
ext/standard/tests/file/bug35740.phpt
ext/standard/tests/file/bug39538.phpt
ext/standard/tests/general_functions/bug27678.phpt
ext/zlib/tests/bug_34821.phpt

index 407b5846fea41da2b835986e653da08d64312a3b..376227f1f1a2dc5befb27a694132ceacd26b6d62 100644 (file)
@@ -1,5 +1,5 @@
 --TEST--
-bug #33382 ( array_reverse() fails after *sort() )
+Bug #33382 ( array_reverse() fails after *sort() )
 --FILE--
 <?php
 
index f91cee09ad9e8f803e5ea787120f4e33ac24893d..f37c933e3f0beb52d7b86e27365d19f2f88caee1 100644 (file)
@@ -1,5 +1,5 @@
 --TEST--
-Bug#36975 (natcasesort() causes array_pop() to misbehave)
+Bug #36975 (natcasesort() causes array_pop() to misbehave)
 --FILE--
 <?php
 $a = array('aa', 'aa', 'bb', 'bb', 'cc', 'cc');                  
index 78df1843c93018615ddc1b1c4d8c6f9ff6624ee1..3526b249734851e80472591c2fc8ca7fd138d61b 100644 (file)
@@ -1,5 +1,5 @@
 --TEST--
-bug #35740 (memory leak when including a directory)
+Bug #35740 (memory leak when including a directory)
 --FILE--
 <?php
 
index 16f15234fcf20d000185cdf1fc80ccdc31c3b5eb..504865e651ff8b7827127c89aebd57587ea3ec53 100644 (file)
@@ -1,5 +1,5 @@
 --TEST--
-bug 39538
+Bug #39538 (fgetcsv can't handle starting newlines and trailing odd number of backslashes)
 --FILE--
 <?php
 $content = array("\"\nthis is an test\", \"next data\", \"p\narsed\"","\"\r\nthis is an test\", \"next data\", \"p\r\narsed\"","\"\n\rthis is an test\", \"next data\", \"p\n\rarsed\"");
@@ -11,6 +11,7 @@ foreach ($content as $v) {
        print_r (fgetcsv(fopen($file, "r"), filesize($file)));
 }
 @unlink($file);
+?>
 --EXPECT--
 Array
 (
index ec9cf93cf7af4a1a037d99beabfb11105e932b68..5db5890a1ce5b1a4161a445c548d61e36f3f2485 100644 (file)
@@ -1,5 +1,5 @@
 --TEST--
-bug #27678 (number_format() crashes with large numbers)
+Bug #27678 (number_format() crashes with large numbers)
 --FILE--
 <?php
 
index ff845c6df7605686e6c7d9ebcb53ebe7f5eb79b9..a9da24612e821eff1a650558656e31cafbefca28 100644 (file)
@@ -1,5 +1,5 @@
 --TEST--
-bug 34821
+Bug #34821 (zlib encoders fail on widely varying binary data)
 --SKIPIF--
 <?php if (!extension_loaded("zlib")) print "skip"; ?>
 --FILE--