diff options
author | Rafael Machado Dohms <rdohms@php.net> | 2009-09-29 14:34:06 +0000 |
---|---|---|
committer | Rafael Machado Dohms <rdohms@php.net> | 2009-09-29 14:34:06 +0000 |
commit | 7f293b32a108c1adf5162a50080dc49b5aca9f89 (patch) | |
tree | c63ee770a3aedaf698b07c73b3023bcd84b1be05 | |
parent | 49b34e9ac6f9300ebdc3655b7d2e6e9dffa67015 (diff) | |
download | php-git-7f293b32a108c1adf5162a50080dc49b5aca9f89.tar.gz |
Fixing tests for head and wrong SKIPIF blocks
-rw-r--r-- | ext/standard/tests/general_functions/bug49692.phpt | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/ext/standard/tests/general_functions/bug49692.phpt b/ext/standard/tests/general_functions/bug49692.phpt index 418b0e9d03..dbe7c38602 100644 --- a/ext/standard/tests/general_functions/bug49692.phpt +++ b/ext/standard/tests/general_functions/bug49692.phpt @@ -2,10 +2,6 @@ Bug #49692: parse_ini_file() throws errors when key contains '/' (forward slash) --CREDITS-- Rafael Dohms <rdohms [at] gmail [dot] com> ---SKIPIF-- -<?php - if (!extension_loaded("gd")) die("skip GD not present"); -?> --FILE-- <?php @@ -14,11 +10,11 @@ var_dump(parse_ini_file('bug49692.ini', true)); ?> --EXPECTF-- array(1) { - ["sitemap"]=> + [u"sitemap"]=> array(2) { - ["/home"]=> - string(13) "default:index" - ["/info"]=> - string(12) "default:info" + [u"/home"]=> + unicode(13) "default:index" + [u"/info"]=> + unicode(12) "default:info" } } |