summaryrefslogtreecommitdiff
path: root/src/testdir/test_stat.vim
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.0.0955: Test_existent_file() fails on some file systemsv8.0.0955Bram Moolenaar2017-08-171-5/+26
| | | | | | Problem: Test_existent_file() fails on some file systems. Solution: Run the test again with a sleep when the test fails without a sleep. (James McCoy, closes #1984)
* patch 8.0.0292: the stat test is a bit slowv8.0.0292Bram Moolenaar2017-02-011-14/+21
| | | | | Problem: The stat test is a bit slow. Solution: Remove a couple of sleep comments and reduce another.
* patch 7.4.1975v7.4.1975Bram Moolenaar2016-07-011-0/+64
Problem: On MS-Windows large files (> 2Gbyte) cause problems. Solution: Use "off_T" instead of "off_t". Use "stat_T" instead of "struct stat". Use 64 bit system functions if available. (Ken Takata)