Browse Source

cosmetic improvements

migration/RELEASE_1_0_0
Antony Dovgal 20 years ago
parent
commit
024d8f4376
  1. 2
      ext/standard/tests/array/bug33382.phpt
  2. 4
      ext/standard/tests/array/bug36975.phpt
  3. 2
      ext/standard/tests/file/bug35740.phpt
  4. 3
      ext/standard/tests/file/bug39538.phpt
  5. 2
      ext/standard/tests/general_functions/bug27678.phpt
  6. 2
      ext/xmlwriter/tests/bug39504.phpt
  7. 2
      ext/zlib/tests/bug_34821.phpt

2
ext/standard/tests/array/bug33382.phpt

@ -1,5 +1,5 @@
--TEST--
bug #33382 ( array_reverse() fails after *sort() )
Bug #33382 ( array_reverse() fails after *sort() )
--FILE--
<?php

4
ext/standard/tests/array/bug36975.phpt

@ -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"
}
}

2
ext/standard/tests/file/bug35740.phpt

@ -1,5 +1,5 @@
--TEST--
bug #35740 (memory leak when including a directory)
Bug #35740 (memory leak when including a directory)
--FILE--
<?php

3
ext/standard/tests/file/bug39538.phpt

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

2
ext/standard/tests/general_functions/bug27678.phpt

@ -1,5 +1,5 @@
--TEST--
bug #27678 (number_format() crashes with large numbers)
Bug #27678 (number_format() crashes with large numbers)
--FILE--
<?php

2
ext/xmlwriter/tests/bug39504.phpt

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

2
ext/zlib/tests/bug_34821.phpt

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

Loading…
Cancel
Save