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

1.1       misho       1: --TEST--
                      2: Bug #55688 (Crash when calling SessionHandler::gc())
                      3: --SKIPIF--
                      4: <?php include('skipif.inc'); ?>
                      5: --INI--
                      6: html_errors=0
                      7: session.save_handler=files
                      8: --FILE--
                      9: <?php
                     10: ini_set('session.save_handler', 'files');
                     11: $x = new SessionHandler;
                     12: $x->gc(1);
                     13: ?>
                     14: --EXPECTF--
                     15: Warning: SessionHandler::gc(): Parent session handler is not open in %s on line %d

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