aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/testdir/test_largefile.vim
Commit message (Collapse)AuthorAge
* vim-patch:7.4.1978James McCoy2017-06-04
| | | | | | | Problem: Large file test does not delete its output. Solution: Delete the output. Check size properly when possible. (Ken Takata) https://github.com/vim/vim/commit/c5af40ae646ceda817eff93b4f9ba274f031bea6
* vim-patch:7.4.1975James McCoy2017-06-04
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) https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe Only the off_T changes are relevant, since all the "struct stat" usage is abstracted by libuv.