summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnatoliy Belsky <ab@php.net>2012-11-27 16:02:55 +0100
committerAnatoliy Belsky <ab@php.net>2012-11-27 16:02:55 +0100
commiteff12e56b63531ca70f2bc55bbb59366b65191e0 (patch)
treee7bd9f7fdf1a54243c8ff8106cac96bba4d8b1ef
parentdf3b9a1e0791803b1d9f9300d8f36dd981126bc7 (diff)
downloadphp-git-eff12e56b63531ca70f2bc55bbb59366b65191e0.tar.gz
This test isn't supposed to pass on windows
-rw-r--r--ext/standard/tests/file/lstat_stat_variation22.phpt7
1 files changed, 6 insertions, 1 deletions
diff --git a/ext/standard/tests/file/lstat_stat_variation22.phpt b/ext/standard/tests/file/lstat_stat_variation22.phpt
index c9072ce013..f9d9047188 100644
--- a/ext/standard/tests/file/lstat_stat_variation22.phpt
+++ b/ext/standard/tests/file/lstat_stat_variation22.phpt
@@ -2,6 +2,11 @@
Test lstat() and stat() functions: usage variations - invalid filenames
--CREDITS--
Dave Kelsey <d_kelsey@uk.ibm.com>
+--SKIPIF--
+<?php
+if (substr(PHP_OS, 0, 3) == 'WIN') {
+ die('skip ... not for Windows');
+}
--FILE--
<?php
/* Prototype: array lstat ( string $filename );
@@ -46,4 +51,4 @@ bool(false)
Warning: lstat(): Lstat failed for | in %s on line %d
bool(false)
-Done \ No newline at end of file
+Done