diff options
author | Kai Schroeder <k.schroeder@php.net> | 2003-02-09 13:19:23 +0000 |
---|---|---|
committer | Kai Schroeder <k.schroeder@php.net> | 2003-02-09 13:19:23 +0000 |
commit | ea9101135f3833738d18e0d854949f480c6de5c1 (patch) | |
tree | 2bc53f486d669993ca2172c6203d978c1d4cf3dc /ext/standard/tests/file/003.phpt | |
parent | 6fa2536252cf94c179dfce1a2dc0ee993fb1ee34 (diff) | |
download | php-git-ea9101135f3833738d18e0d854949f480c6de5c1.tar.gz |
is_executable() does not exist on Windows
Diffstat (limited to 'ext/standard/tests/file/003.phpt')
-rw-r--r-- | ext/standard/tests/file/003.phpt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ext/standard/tests/file/003.phpt b/ext/standard/tests/file/003.phpt index 2b75bdccee..7de2cdca76 100644 --- a/ext/standard/tests/file/003.phpt +++ b/ext/standard/tests/file/003.phpt @@ -1,5 +1,11 @@ --TEST-- is_*() and file_exists() return values are boolean. +--SKIPIF-- +<?php +if (substr(PHP_OS, 0, 3) == 'WIN') { + die('skip is_executable() does not exist on Windows'); +} +?> --POST-- --GET-- --FILE-- |