summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfoobar <sniper@php.net>2005-07-04 13:09:14 +0000
committerfoobar <sniper@php.net>2005-07-04 13:09:14 +0000
commit73dd4043b376e87f5b58bdb02300468ae64eda70 (patch)
tree193a04c2a12d1807279903c790726ea402a294b0
parentd647e000a7678ef5dbc198c04bce92a055d85437 (diff)
downloadphp-git-73dd4043b376e87f5b58bdb02300468ae64eda70.tar.gz
Make sure files-save handler is used always
-rw-r--r--ext/session/tests/001.phpt1
-rw-r--r--ext/session/tests/003.phpt1
-rw-r--r--ext/session/tests/006.phpt3
-rw-r--r--ext/session/tests/007.phpt1
-rw-r--r--ext/session/tests/008-php4.2.3.phpt1
-rw-r--r--ext/session/tests/009.phpt1
-rw-r--r--ext/session/tests/012.phpt1
-rw-r--r--ext/session/tests/013.phpt1
-rw-r--r--ext/session/tests/014.phpt1
-rw-r--r--ext/session/tests/015.phpt1
-rw-r--r--ext/session/tests/017.phpt1
-rw-r--r--ext/session/tests/018.phpt1
-rw-r--r--ext/session/tests/019.phpt1
-rw-r--r--ext/session/tests/020.phpt1
-rw-r--r--ext/session/tests/021.phpt1
-rw-r--r--ext/session/tests/bug24592.phpt1
-rw-r--r--ext/session/tests/bug26862.phpt1
17 files changed, 18 insertions, 1 deletions
diff --git a/ext/session/tests/001.phpt b/ext/session/tests/001.phpt
index 75d5df1632..934987f1c9 100644
--- a/ext/session/tests/001.phpt
+++ b/ext/session/tests/001.phpt
@@ -7,6 +7,7 @@ session.use_cookies=0
session.cache_limiter=
register_globals=1
session.serialize_handler=php
+session.save_handler=files
--FILE--
<?php
error_reporting(E_ALL);
diff --git a/ext/session/tests/003.phpt b/ext/session/tests/003.phpt
index fed90902cd..9972358e1a 100644
--- a/ext/session/tests/003.phpt
+++ b/ext/session/tests/003.phpt
@@ -7,6 +7,7 @@ session.use_cookies=0
session.cache_limiter=
register_globals=1
session.serialize_handler=php
+session.save_handler=files
--FILE--
<?php
error_reporting(E_ALL);
diff --git a/ext/session/tests/006.phpt b/ext/session/tests/006.phpt
index fb355976fb..40385bbe1e 100644
--- a/ext/session/tests/006.phpt
+++ b/ext/session/tests/006.phpt
@@ -7,6 +7,7 @@ session.use_cookies=0
session.cache_limiter=
register_globals=1
session.serialize_handler=php
+session.save_handler=files
--FILE--
<?php
error_reporting(E_ALL);
@@ -67,4 +68,4 @@ object(b)#%d (1) {
["test"]=>
string(5) "hallo"
}
-} \ No newline at end of file
+}
diff --git a/ext/session/tests/007.phpt b/ext/session/tests/007.phpt
index a6abbec9b1..7ed74ea474 100644
--- a/ext/session/tests/007.phpt
+++ b/ext/session/tests/007.phpt
@@ -9,6 +9,7 @@ session.cache_limiter=
register_globals=1
session.bug_compat_42=1
session.serialize_handler=php
+session.save_handler=files
--FILE--
<?php
error_reporting(E_ALL);
diff --git a/ext/session/tests/008-php4.2.3.phpt b/ext/session/tests/008-php4.2.3.phpt
index 152c1e514d..0057f2be44 100644
--- a/ext/session/tests/008-php4.2.3.phpt
+++ b/ext/session/tests/008-php4.2.3.phpt
@@ -17,6 +17,7 @@ html_errors=0
display_errors=1
error_reporting=2039;
session.serialize_handler=php
+session.save_handler=files
--FILE--
<?php
session_id("abtest");
diff --git a/ext/session/tests/009.phpt b/ext/session/tests/009.phpt
index d1d78eed18..903b8be3a5 100644
--- a/ext/session/tests/009.phpt
+++ b/ext/session/tests/009.phpt
@@ -10,6 +10,7 @@ register_globals=0
session.bug_compat_42=1
session.bug_compat_warn=0
session.serialize_handler=php
+session.save_handler=files
--FILE--
<?php
error_reporting(E_ALL);
diff --git a/ext/session/tests/012.phpt b/ext/session/tests/012.phpt
index 2bfee9b3de..a3d33d3602 100644
--- a/ext/session/tests/012.phpt
+++ b/ext/session/tests/012.phpt
@@ -9,6 +9,7 @@ register_globals=1
session.bug_compat_42=1
session.bug_compat_warn=0
session.serialize_handler=php
+session.save_handler=files
--FILE--
<?php
error_reporting(E_ALL);
diff --git a/ext/session/tests/013.phpt b/ext/session/tests/013.phpt
index 77c1353054..54ccaeddb7 100644
--- a/ext/session/tests/013.phpt
+++ b/ext/session/tests/013.phpt
@@ -9,6 +9,7 @@ register_globals=1
session.bug_compat_42=1
session.bug_compat_warn=0
session.serialize_handler=php
+session.save_handler=files
--FILE--
<?php
error_reporting(E_ALL);
diff --git a/ext/session/tests/014.phpt b/ext/session/tests/014.phpt
index 3f22186839..4c5b14c697 100644
--- a/ext/session/tests/014.phpt
+++ b/ext/session/tests/014.phpt
@@ -11,6 +11,7 @@ session.bug_compat_42=1
session.bug_compat_warn=0
session.name=PHPSESSID
session.serialize_handler=php
+session.save_handler=files
--FILE--
<?php
error_reporting(E_ALL);
diff --git a/ext/session/tests/015.phpt b/ext/session/tests/015.phpt
index 53929b1672..e747e08fbd 100644
--- a/ext/session/tests/015.phpt
+++ b/ext/session/tests/015.phpt
@@ -9,6 +9,7 @@ session.cache_limiter=
arg_separator.output=&
session.name=PHPSESSID
session.serialize_handler=php
+session.save_handler=files
--FILE--
<?php
error_reporting(E_ALL);
diff --git a/ext/session/tests/017.phpt b/ext/session/tests/017.phpt
index 2a11fed85b..dbe53f5698 100644
--- a/ext/session/tests/017.phpt
+++ b/ext/session/tests/017.phpt
@@ -6,6 +6,7 @@ setting $_SESSION before session_start() should not cause segfault
session.use_cookies=0
session.cache_limiter=
session.serialize_handler=php
+session.save_handler=files
--FILE--
<?php
diff --git a/ext/session/tests/018.phpt b/ext/session/tests/018.phpt
index 0b84978ed2..3450d1e3f1 100644
--- a/ext/session/tests/018.phpt
+++ b/ext/session/tests/018.phpt
@@ -8,6 +8,7 @@ session.cache_limiter=
session.use_trans_sid=1
session.name=PHPSESSID
session.serialize_handler=php
+session.save_handler=files
--FILE--
<?php
diff --git a/ext/session/tests/019.phpt b/ext/session/tests/019.phpt
index e9f8699440..2d819c6762 100644
--- a/ext/session/tests/019.phpt
+++ b/ext/session/tests/019.phpt
@@ -7,6 +7,7 @@ session.use_cookies=0
session.cache_limiter=
register_globals=1
session.serialize_handler=php
+session.save_handler=files
--FILE--
<?php
diff --git a/ext/session/tests/020.phpt b/ext/session/tests/020.phpt
index c9571ef20d..455c7f7204 100644
--- a/ext/session/tests/020.phpt
+++ b/ext/session/tests/020.phpt
@@ -9,6 +9,7 @@ session.use_trans_sid=1
arg_separator.output=&amp;
session.name=PHPSESSID
session.serialize_handler=php
+session.save_handler=files
--FILE--
<?php
diff --git a/ext/session/tests/021.phpt b/ext/session/tests/021.phpt
index b45406438e..9d95b86d06 100644
--- a/ext/session/tests/021.phpt
+++ b/ext/session/tests/021.phpt
@@ -9,6 +9,7 @@ session.use_trans_sid=1
url_rewriter.tags="a=href,area=href,frame=src,input=src,form=,fieldset="
session.name=PHPSESSID
session.serialize_handler=php
+session.save_handler=files
--FILE--
<?php
diff --git a/ext/session/tests/bug24592.phpt b/ext/session/tests/bug24592.phpt
index e13c89a5f0..2c749386e6 100644
--- a/ext/session/tests/bug24592.phpt
+++ b/ext/session/tests/bug24592.phpt
@@ -5,6 +5,7 @@ Bug #24592 (crash when multiple NULL values are being stored)
--INI--
register_globals=0
html_errors=0
+session.save_handler=files
--FILE--
<?php
@session_start();
diff --git a/ext/session/tests/bug26862.phpt b/ext/session/tests/bug26862.phpt
index 01533929e6..44e7418cd0 100644
--- a/ext/session/tests/bug26862.phpt
+++ b/ext/session/tests/bug26862.phpt
@@ -6,6 +6,7 @@ Bug #26862 (ob_flush() before output_reset_rewrite_vars() results in data loss)
register_globals=0
html_errors=0
session.use_trans_sid=0
+session.save_handler=files
--FILE--
<?php
session_start();