1
0
mirror of https://github.com/php/php-src.git synced 2026-04-17 04:51:03 +02:00
Files
archived-php-src/ext/posix/tests/001.phpt
Nuno Lopes 37a08a329c MFB
2006-09-16 17:42:44 +00:00

13 lines
205 B
PHP

--TEST--
posix_access() with bogus paths
--SKIPIF--
<?php if (!extension_loaded('posix')) echo 'skip'; ?>
--FILE--
<?php
var_dump(posix_access(str_repeat('bogus path', 1042)));
?>
--EXPECT--
bool(false)