Annotation of embedaddon/php/ext/session/tests/bug60634.phpt, revision 1.1.1.1

1.1       misho       1: --TEST--
                      2: Bug #60634 (Segmentation fault when trying to die() in SessionHandler::write())
                      3: --XFAIL--
                      4: Long term low priority bug, working on it
                      5: --INI--
                      6: session.save_path=
                      7: session.name=PHPSESSID
                      8: --SKIPIF--
                      9: <?php include('skipif.inc'); ?>
                     10: --FILE--
                     11: <?php
                     12: 
                     13: ob_start();
                     14: 
                     15: function open($save_path, $session_name) {
                     16:     return true;
                     17: }
                     18: 
                     19: function close() {
                     20:        die("close: goodbye cruel world\n");
                     21: }
                     22: 
                     23: function read($id) {
                     24:        return '';
                     25: }
                     26: 
                     27: function write($id, $session_data) {
                     28:        die("write: goodbye cruel world\n");
                     29: }
                     30: 
                     31: function destroy($id) {
                     32:     return true;
                     33: }
                     34: 
                     35: function gc($maxlifetime) {
                     36:     return true;
                     37: }
                     38: 
                     39: session_set_save_handler('open', 'close', 'read', 'write', 'destroy', 'gc');
                     40: session_start();
                     41: session_write_close();
                     42: echo "um, hi\n";
                     43: 
                     44: ?>
                     45: --EXPECTF--
                     46: write: goodbye cruel world

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