fix #98 #99 #100 #101 #102 #103
[m6w6/ext-http] / tests / messagebody003.phpt
index d6f9ce1478f8afd7c8635dd55e0739bacc3b9335..be407894d82c6954a61347be997c262153ca1833 100644 (file)
@@ -4,13 +4,15 @@ message body append error
 <?php
 include "skipif.inc";
 ?>
+--INI--
+zend.exception_ignore_args=off
 --FILE--
 <?php
 echo "Test\n";
 
 $file = new http\Message\Body(fopen(__FILE__, "r"));
 try {
-       $file->append("nope");
+       @$file->append("nope");
 } catch (Exception $e) {
        echo $e, "\n";
 }
@@ -19,7 +21,7 @@ try {
 DONE
 --EXPECTF--
 Test
-exception 'http\Exception\RuntimeException' with message 'http\Message\Body::append(): Failed to append 4 bytes to body; wrote 0' in /home/mike/src/ext-http.git/tests/messagebody003.php:6
+http\Exception\RuntimeException: http\Message\Body::append(): Failed to append 4 bytes to body; wrote 0 in %s:%d
 Stack trace:
 #0 %s(%d): http\Message\Body->append('nope')
 #1 {main}