Skip to content

Commit

Permalink
add test for #60634
Browse files Browse the repository at this point in the history
  • Loading branch information
arraypad committed Jan 3, 2012
1 parent daa8e83 commit 5f948f6
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions ext/session/tests/bug60634.phpt
@@ -0,0 +1,45 @@
--TEST--
Bug #60634 (Segmentation fault when trying to die() in SessionHandler::write())
--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() {
die("close: goodbye cruel world\n");
}

function read($id) {
return '';
}

function write($id, $session_data) {
die("write: goodbye cruel world\n");
}

function destroy($id) {
return true;
}

function gc($maxlifetime) {
return true;
}

session_set_save_handler('open', 'close', 'read', 'write', 'destroy', 'gc');
session_start();
session_write_close();
echo "um, hi\n";

?>
--EXPECTF--
write: goodbye cruel world
close: goodbye cruel world

0 comments on commit 5f948f6

Please sign in to comment.