summaryrefslogtreecommitdiff
path: root/ext/standard/tests/file/bug24482.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/tests/file/bug24482.phpt')
-rw-r--r--ext/standard/tests/file/bug24482.phpt37
1 files changed, 0 insertions, 37 deletions
diff --git a/ext/standard/tests/file/bug24482.phpt b/ext/standard/tests/file/bug24482.phpt
deleted file mode 100644
index 4bf12e8f66..0000000000
--- a/ext/standard/tests/file/bug24482.phpt
+++ /dev/null
@@ -1,37 +0,0 @@
---TEST--
-Bug #24482 (GLOB_ONLYDIR not working)
---SKIPIF--
-<?php
-if (!function_exists("glob")) {
- die('skip glob() not available');
-}
-?>
---FILE--
-<?php
-$globdirs = glob("*", GLOB_ONLYDIR);
-
-$dirs = array();
-$dh = opendir(".");
-while (is_string($file = readdir($dh))) {
- if ($file{0} === ".") continue;
- if (!is_dir($file)) continue;
- $dirs[] = $file;
-}
-closedir($dh);
-
-if (count($dirs) != count($globdirs)) {
- echo "Directory count mismatch\n";
-
- echo "glob found:\n";
- sort($globdirs);
- var_dump($globdirs);
-
- echo "opendir/readdir/isdir found:\n";
- sort($dirs);
- var_dump($dirs);
-} else {
- echo "OK\n";
-}
-?>
---EXPECT--
-OK