diff options
author | Anatol Belski <ab@php.net> | 2014-01-05 19:21:49 +0100 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2014-01-05 19:21:49 +0100 |
commit | 61e1f79585dd610b0390be4792ef3e98906644af (patch) | |
tree | 07a2a86869c1dabf0eed7ea849648c3bcf8cc091 | |
parent | e5dd5d0ad45e202d105eb02803b214159a0900d7 (diff) | |
parent | 748e707bf94cf3353616727ade7c3a79ef5de25f (diff) | |
download | php-git-61e1f79585dd610b0390be4792ef3e98906644af.tar.gz |
Merge branch 'PHP-5.5' into PHP-5.6
* PHP-5.5:
one more extension for the basename test
-rw-r--r-- | ext/standard/tests/file/basename_bug66395_variation2-win32.phpt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/standard/tests/file/basename_bug66395_variation2-win32.phpt b/ext/standard/tests/file/basename_bug66395_variation2-win32.phpt index 05df79b02a..0ebe996cd5 100644 --- a/ext/standard/tests/file/basename_bug66395_variation2-win32.phpt +++ b/ext/standard/tests/file/basename_bug66395_variation2-win32.phpt @@ -17,6 +17,7 @@ echo basename("a:\\b:\\c:d:hello\\world:some.stream") . "\n"; echo basename("a:/b:\\c:d:hello\\world:some.stream:\$DATA") . "\n"; echo basename("x:y:z:hello\world:my.stream:\$DATA") . "\n"; echo basename("a:\\b:\\c:d:hello\\world:c:\$DATA") . "\n"; +echo basename("a:\\b:\\c:d:hello\\d:world:c:\$DATA") . "\n"; ?> ==DONE== --EXPECTF-- @@ -33,4 +34,5 @@ world:some.stream world:some.stream:$DATA world:my.stream:$DATA world:c:$DATA +world:c:$DATA ==DONE== |