summaryrefslogtreecommitdiff
path: root/ext/session/tests/017.phpt
diff options
context:
space:
mode:
authorSVN Migration <svn@php.net>2002-10-12 14:20:33 +0000
committerSVN Migration <svn@php.net>2002-10-12 14:20:33 +0000
commitfaa91c556864bf06779a0bb05bbf97ad72a034fb (patch)
treef2b77f482eb07af38f786e126f967818f1d669c5 /ext/session/tests/017.phpt
parentc93ff0fa6ffa231d4dc97d0766649f6f8038f32f (diff)
downloadphp-git-faa91c556864bf06779a0bb05bbf97ad72a034fb.tar.gz
This commit was manufactured by cvs2svn to create tag 'RELEASE_1_0b1'.RELEASE_1_0b1
Diffstat (limited to 'ext/session/tests/017.phpt')
-rw-r--r--ext/session/tests/017.phpt24
1 files changed, 0 insertions, 24 deletions
diff --git a/ext/session/tests/017.phpt b/ext/session/tests/017.phpt
deleted file mode 100644
index f2a6997b50..0000000000
--- a/ext/session/tests/017.phpt
+++ /dev/null
@@ -1,24 +0,0 @@
---TEST--
-setting $_SESSION before session_start() should not cause segfault
---SKIPIF--
-<?php include('skipif.inc'); ?>
---INI--
-session.use_cookies=0
-session.cache_limiter=
---FILE--
-<?php
-
-error_reporting(E_ALL);
-
-class Kill {
- function Kill() {
- global $HTTP_SESSION_VARS;
- session_start();
- }
-}
-$k = new Kill();
-
-print "I live\n";
-?>
---EXPECT--
-I live