]> granicus.if.org Git - php/commitdiff
removing test. this one tests system-specific behavior, not something implemented...
authorAlexey Zakhlestin <indeyets@php.net>
Fri, 17 Jul 2009 17:17:57 +0000 (17:17 +0000)
committerAlexey Zakhlestin <indeyets@php.net>
Fri, 17 Jul 2009 17:17:57 +0000 (17:17 +0000)
ext/standard/tests/file/glob_error_002.phpt [deleted file]

diff --git a/ext/standard/tests/file/glob_error_002.phpt b/ext/standard/tests/file/glob_error_002.phpt
deleted file mode 100644 (file)
index f5bad73..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
---TEST--
-Test glob() function: long pattern.
---CREDITS--
-Dave Kelsey <d_kelsey@uk.ibm.com>
---SKIPIF--
-<?php
-if(substr(PHP_OS, 0, 3) == "WIN")
-  die("skip Not valid for Windows");
-?>
---FILE--
-<?php
-/* Prototype: array glob ( string $pattern [, int $flags] );
-   Description: Find pathnames matching a pattern
-*/
-
-echo "*** Testing glob() : long pattern. ***\n";
-
-var_dump(glob(str_repeat('x', 3000)));
-
-echo "Done";
-?>
---EXPECTF--
-*** Testing glob() : long pattern. ***
-array(0) {
-}
-Done
-