File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / Zend / tests / bug48228.phpt
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue Feb 21 23:47:52 2012 UTC (13 years, 1 month ago) by misho
Branches: php, MAIN
CVS tags: v5_4_3elwix, v5_4_29p0, v5_4_29, v5_4_20p0, v5_4_20, v5_4_17p0, v5_4_17, v5_3_10, HEAD
php

    1: --TEST--
    2: Bug #48228 (crash when exception is thrown while passing function arguments)
    3: --FILE--
    4: <?php
    5: 
    6: function do_throw() {
    7: 	throw new Exception();
    8: }
    9: 
   10: class aa 
   11: {
   12: 	function check()
   13: 	{
   14: 	}
   15: 
   16: 	function dosome()
   17: 	{
   18: 		$this->check(do_throw());
   19: 	}
   20: }
   21: $l_aa=new aa();
   22: 
   23: $l_aa->dosome();
   24: ?>
   25: --EXPECTF--
   26: 
   27: Fatal error: Uncaught exception 'Exception' in %s
   28: Stack trace:
   29: #0 %s(%d): do_throw()
   30: #1 %s(%d): aa->dosome()
   31: #2 {main}
   32:   thrown in %s

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>