php-src/ext/session/tests/bug60634_error_3.phpt

52 lines
942 B
Plaintext
Raw Normal View History

--TEST--
Bug #60634 (Segmentation fault when trying to die() in SessionHandler::write()) - fatal error in write after exec
--INI--
session.save_path=
session.name=PHPSESSID
--SKIPIF--
<?php include('skipif.inc'); ?>
--FILE--
<?php
ob_start();
function open($save_path, $session_name) {
return true;
}
function close() {
echo "close: goodbye cruel world\n";
exit;
}
function read($id) {
return '';
}
function write($id, $session_data) {
echo "write: goodbye cruel world\n";
undefined_function();
}
function destroy($id) {
return true;
}
function gc($maxlifetime) {
return true;
}
session_set_save_handler('open', 'close', 'read', 'write', 'destroy', 'gc');
session_start();
?>
--EXPECTF--
write: goodbye cruel world
Fatal error: Uncaught Error: Call to undefined function undefined_function() in %s:%d
Stack trace:
#0 [internal function]: write(%s, '')
#1 {main}
thrown in %s on line %d
2013-06-25 10:47:04 +00:00
close: goodbye cruel world