]> granicus.if.org Git - php/commitdiff
Update test script
authorXinchen Hui <laruence@gmail.com>
Sat, 21 Nov 2015 13:01:51 +0000 (05:01 -0800)
committerXinchen Hui <laruence@gmail.com>
Sat, 21 Nov 2015 13:01:51 +0000 (05:01 -0800)
Zend/tests/bug70944.phpt

index 7584384a413120a330216fcc828d58550c41a829..192fd6d50175735a77f3b901e2ac3b502c02e211 100644 (file)
@@ -10,7 +10,7 @@ try {
                throw $e;
        }
 } catch (Exception $e) {
-       var_dump($e->getMessage());
+       var_dump((string)$e);
 }
 
 try {
@@ -21,9 +21,17 @@ try {
                throw new Exception("Dummy", 0, $e);
        }
 } catch (Exception $e) {
-       var_dump($e->getMessage());
+       var_dump((string)$e);
 }
 ?>
---EXPECT--
-string(3) "Foo"
-string(5) "Dummy"
+--EXPECTF--
+string(%d) "exception 'Exception' with message 'Foo' in %sbug70944.php:%d
+Stack trace:
+#0 {main}"
+string(%d) "exception 'Exception' with message 'Foo' in %sbug70944.php:%d
+Stack trace:
+#0 {main}
+
+Next exception 'Exception' with message 'Dummy' in %sbug70944.php:%d
+Stack trace:
+#0 {main}"