tests: fix linux glob test
[m6w6/ext-psi] / tests / glob / glob002.phpt
index 17bad44b70f0dc4ec68c88d93f004d1993bbe576..704386fdee621cda979275cda00a8d4e975e467f 100644 (file)
@@ -11,8 +11,8 @@ PHP_OS === "Linux" or die("skip - only for Linux");
 ===TEST===
 <?php
 chdir(__DIR__);
-$glob = ["gl_offs" => 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===
@@ -21,9 +21,9 @@ var_dump($glob);
 int(0)
 array(4) {
   ["gl_pathc"]=>
-  int(4)
+  int(2)
   ["gl_offs"]=>
-  int(3)
+  int(5)
   ["gl_flags"]=>
   int(%d)
   ["gl_pathv"]=>
@@ -35,13 +35,13 @@ array(4) {
     [2]=>
     string(0) ""
     [3]=>
-    string(11) "glob002.php"
+    string(0) ""
     [4]=>
-    string(12) "glob001.phpt"
+    string(0) ""
     [5]=>
-    string(12) "glob002.phpt"
+    string(11) "glob002.php"
     [6]=>
-    string(12) "glob003.phpt"
+    string(12) "glob002.phpt"
   }
 }
 ===DONE===