~ubuntu-branches/ubuntu/hardy/php5/hardy-updates

« back to all changes in this revision

Viewing changes to ext/session/tests/011.phpt

  • Committer: Bazaar Package Importer
  • Author(s): Adam Conrad
  • Date: 2005-10-09 03:14:32 UTC
  • Revision ID: james.westby@ubuntu.com-20051009031432-kspik3lobxstafv9
Tags: upstream-5.0.5
ImportĀ upstreamĀ versionĀ 5.0.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
--TEST--
 
2
session_decode(); should not segfault
 
3
--SKIPIF--
 
4
<?php include('skipif.inc'); ?>
 
5
--INI--
 
6
session.use_cookies=0
 
7
session.cache_limiter=
 
8
register_globals=0
 
9
session.bug_compat_42=1
 
10
session.bug_compat_warn=0
 
11
--FILE--
 
12
<?php
 
13
error_reporting(E_ALL);
 
14
 
 
15
@session_decode("garbage data and no session started");
 
16
@session_decode("userid|s:5:\"mazen\";chatRoom|s:1:\"1\";");
 
17
print "I live\n";
 
18
?>
 
19
--EXPECT--
 
20
I live