diff options
author | Rasmus Lerdorf <rasmus@lerdorf.com> | 2018-10-31 10:58:45 -0700 |
---|---|---|
committer | Rasmus Lerdorf <rasmus@lerdorf.com> | 2018-10-31 10:58:45 -0700 |
commit | 4e8195769ddcc791c83e37b00019ef761b679412 (patch) | |
tree | db560171c68da85d37de1ff5a4f68897e8d265db /ext/session | |
parent | 1954c7e1c6167db863096dcab0bf08cf1a6a5184 (diff) | |
download | php-git-4e8195769ddcc791c83e37b00019ef761b679412.tar.gz |
Fix session tests that fail if error_log is set
Diffstat (limited to 'ext/session')
-rw-r--r-- | ext/session/tests/bug60860.phpt | 1 | ||||
-rw-r--r-- | ext/session/tests/bug66481.phpt | 1 | ||||
-rw-r--r-- | ext/session/tests/session_set_save_handler_class_014.phpt | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/ext/session/tests/bug60860.phpt b/ext/session/tests/bug60860.phpt index 57156753fb..e49b27b725 100644 --- a/ext/session/tests/bug60860.phpt +++ b/ext/session/tests/bug60860.phpt @@ -7,6 +7,7 @@ include('skipif.inc'); --INI-- session.save_handler=user display_errors=off +error_log= --FILE-- <?php diff --git a/ext/session/tests/bug66481.phpt b/ext/session/tests/bug66481.phpt index 3ceb3e299e..fc789d238a 100644 --- a/ext/session/tests/bug66481.phpt +++ b/ext/session/tests/bug66481.phpt @@ -2,6 +2,7 @@ Bug #66481: Calls to session_name() segfault when session.name is null. --INI-- session.name= +error_log= --SKIPIF-- <?php include('skipif.inc'); ?> --FILE-- diff --git a/ext/session/tests/session_set_save_handler_class_014.phpt b/ext/session/tests/session_set_save_handler_class_014.phpt index 0b647bcc59..c0b3b9f273 100644 --- a/ext/session/tests/session_set_save_handler_class_014.phpt +++ b/ext/session/tests/session_set_save_handler_class_014.phpt @@ -4,6 +4,7 @@ Test session_set_save_handler() : calling default handler when save_handler=user session.save_handler=user session.name=PHPSESSID display_errors=off +error_log= --SKIPIF-- <?php include('skipif.inc'); |