X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-psi;a=blobdiff_plain;f=tests%2Fglob%2Fglob002.phpt;h=704386fdee621cda979275cda00a8d4e975e467f;hp=530165af1d21b3a55cd6547bd8d8c385e4feb120;hb=1d1a092ee6343a4cb75bfdf9a5f950bd33809d47;hpb=22ca720deabdb92ebedf4c9c82d758671c9d5f3d diff --git a/tests/glob/glob002.phpt b/tests/glob/glob002.phpt index 530165a..704386f 100644 --- a/tests/glob/glob002.phpt +++ b/tests/glob/glob002.phpt @@ -5,17 +5,43 @@ psi.directory={PWD}/../../psi.d:{PWD} --SKIPIF-- --FILE-- ===TEST=== - 3]; -var_dump(psi\glob("*.php{,t}", psi\GLOB_BRACE|psi\GLOB_DOOFFS, $glob)); +$glob = ["gl_offs" => 5]; +var_dump(psi\glob("*002.php*", psi\GLOB_DOOFFS, $glob)); var_dump($glob); ?> ===DONE=== --EXPECTF-- ===TEST=== int(0) -===DONE=== \ No newline at end of file +array(4) { + ["gl_pathc"]=> + int(2) + ["gl_offs"]=> + int(5) + ["gl_flags"]=> + int(%d) + ["gl_pathv"]=> + array(7) { + [0]=> + string(0) "" + [1]=> + string(0) "" + [2]=> + string(0) "" + [3]=> + string(0) "" + [4]=> + string(0) "" + [5]=> + string(11) "glob002.php" + [6]=> + string(12) "glob002.phpt" + } +} +===DONE===