Annotation of embedaddon/php/Zend/tests/bug41026.phpt, revision 1.1
1.1 ! misho 1: --TEST--
! 2: Bug #41026 (segfault when calling "self::method()" in shutdown functions)
! 3: --FILE--
! 4: <?php
! 5:
! 6: class try_class
! 7: {
! 8: static public function main ()
! 9: {
! 10: register_shutdown_function (array ("self", "on_shutdown"));
! 11: }
! 12:
! 13: static public function on_shutdown ()
! 14: {
! 15: printf ("CHECKPOINT\n"); /* never reached */
! 16: }
! 17: }
! 18:
! 19: try_class::main ();
! 20:
! 21: echo "Done\n";
! 22: ?>
! 23: --EXPECTF--
! 24: Done
! 25:
! 26: Warning: (Registered shutdown functions) Unable to call self::on_shutdown() - function does not exist in Unknown on line 0
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>