File:
[ELWIX - Embedded LightWeight unIX -] /
embedaddon /
php /
ext /
standard /
tests /
file /
bug39367.phpt
Revision
1.1.1.1 (vendor branch):
download - view:
text,
annotated -
select for diffs -
revision graph
Tue Feb 21 23:48:03 2012 UTC (12 years, 8 months ago) by
misho
Branches:
php,
MAIN
CVS tags:
v5_4_3elwix,
v5_4_29p0,
v5_4_29,
v5_4_20p0,
v5_4_20,
v5_4_17p0,
v5_4_17,
v5_3_10,
HEAD
php
--TEST--
Bug #39367 (clearstatcache() doesn't clear realpath cache)
--SKIPIF--
<?php
if (substr(PHP_OS, 0, 3) == 'WIN') {
die('skip no symlinks on Windows');
}
?>
--FILE--
<?php
function test() {
unlink('/tmp/1link');
unlink('/tmp/1tmp');
unlink('/tmp/testfile1');
file_put_contents('/tmp/testfile1', 'ok');
symlink('/tmp/testfile1', '/tmp/1tmp');
rename('/tmp/1tmp', '/tmp/1link');
echo file_get_contents('/tmp/1link')."\n";
unlink('/tmp/1link');
clearstatcache(true);
echo file_get_contents('/tmp/1link')."\n";
unlink('/tmp/1link');
unlink('/tmp/1tmp');
unlink('/tmp/testfile1');
}
@test();
?>
--EXPECT--
ok
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>