]> granicus.if.org Git - php/commitdiff
Bug #61470 is fixed only in master
authorYasuo Ohgaki <yohgaki@php.net>
Tue, 3 Feb 2015 03:26:01 +0000 (12:26 +0900)
committerYasuo Ohgaki <yohgaki@php.net>
Tue, 3 Feb 2015 03:26:01 +0000 (12:26 +0900)
ext/session/tests/bug61470.phpt [deleted file]

diff --git a/ext/session/tests/bug61470.phpt b/ext/session/tests/bug61470.phpt
deleted file mode 100644 (file)
index 3dc068b..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
---TEST--
-Bug #61470 (session_regenerate_id() does not create session file)
---SKIPIF--
-<?php include('skipif.inc'); ?>
---INI--
---FILE--
-<?php
-$path = ini_get('session.save_path') . '/sess_';
-
-ob_start();
-session_start();
-// starts session & creates and locks file
-var_dump(is_file($path . session_id()));
-
-session_regenerate_id();
-// starts new session, but file is not create!
-var_dump(is_file($path . session_id()));
---EXPECT--
-bool(true);
-bool(true);
-