diff options
author | Jani Taskinen <jani@php.net> | 2010-11-17 14:54:37 +0000 |
---|---|---|
committer | Jani Taskinen <jani@php.net> | 2010-11-17 14:54:37 +0000 |
commit | d225fe4e58ceb39d429f218f0c05a2e7d518b92d (patch) | |
tree | 523094a1f2ace0b82266aadb61178f9670a93938 | |
parent | 5d2e201c3d5206efefb2dd87f8c2a82fbdf6692c (diff) | |
download | php-git-d225fe4e58ceb39d429f218f0c05a2e7d518b92d.tar.gz |
- Fix test
-rwxr-xr-x | ext/spl/tests/spl_fileinfo_getlinktarget_basic.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/spl/tests/spl_fileinfo_getlinktarget_basic.phpt b/ext/spl/tests/spl_fileinfo_getlinktarget_basic.phpt index 399d9a31aa..cee557e330 100755 --- a/ext/spl/tests/spl_fileinfo_getlinktarget_basic.phpt +++ b/ext/spl/tests/spl_fileinfo_getlinktarget_basic.phpt @@ -8,7 +8,7 @@ if (substr(PHP_OS, 0, 3) == 'WIN') die("skip this test not for Windows platforms ?> --FILE-- <?php -$link = 'test_link'; +$link = __DIR__ . '/test_link'; symlink(__FILE__, $link ); $fileInfo = new SplFileInfo($link); |