]> granicus.if.org Git - php/commitdiff
cosmetic improvements
authorAntony Dovgal <tony2001@php.net>
Tue, 5 Dec 2006 23:03:42 +0000 (23:03 +0000)
committerAntony Dovgal <tony2001@php.net>
Tue, 5 Dec 2006 23:03:42 +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/xmlwriter/tests/bug39504.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 546eeb9cb5535b10d879555d757f6c24f28df68f..b0044880a16e4973a730549ed0b765e9122c1495 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');                  
@@ -95,4 +95,4 @@ array(6) {
   unicode(3) "foo"
   [6]=>
   unicode(3) "bar"
-}
\ No newline at end of file
+}
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 1a1812b22b35cf722157ddd4f0e5e650aa0c1183..3b70f6a2f21eab77f422a34fb9c77a9a9371a67a 100644 (file)
@@ -1,5 +1,5 @@
 --TEST--
-bug# 39504 (xmlwriter_write_dtd_entity() creates Attlist tag, not enity)
+Bug #39504 (xmlwriter_write_dtd_entity() creates Attlist tag, not enity)
 --FILE--
 <?php
 
index 8554638095f3ca04dde64b155feb9e7e33686852..0600b5faa238a00d0f7c78fb443ca9b50e8d4cf1 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--