summaryrefslogtreecommitdiff
path: root/src/testdir/test_fnamemodify.vim
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.2.1505: not all file read and writecode is testedv8.2.1505Bram Moolenaar2020-08-211-0/+6
| | | | | Problem: Not all file read and writecode is tested. Solution: Add a few tests. (Dominique Pellé, closes #6764)
* patch 8.2.0942: expanding to local dir after homedir keeps "~/"v8.2.0942Bram Moolenaar2020-06-101-0/+3
| | | | | | Problem: Expanding to local dir after homedir keeps "~/". Solution: Adjust modify_fname(). (Christian Brabandt, closes #6205, closes #5979)
* patch 8.2.0634: crash with null partial and blobv8.2.0634Bram Moolenaar2020-04-251-0/+4
| | | | | | Problem: Crash with null partial and blob. Solution: Check for NULL pointer. Add more tests. (Yegappan Lakshmanan, closes #5984)
* patch 8.2.0215: wrong file name shorteningv8.2.0215Bram Moolenaar2020-02-051-0/+2
| | | | | | Problem: Wrong file name shortening. (Ingo Karkat) Solution: Better check for path separator. (Yasuhiro Matsumoto, closes #5583, closes #5584)
* patch 8.2.0208: fnamemodify() does not apply ":~" when followed by ":."v8.2.0208Bram Moolenaar2020-02-041-0/+12
| | | | | | Problem: Fnamemodify() does not apply ":~" when followed by ":.". Solution: Don't let a failing ":." cause the ":~" to be skipped. (Yasuhiro Matsumoto, closes #5577)
* patch 8.1.2125: fnamemodify() fails when repeating :ev8.1.2125Bram Moolenaar2019-10-081-0/+28
| | | | | Problem: Fnamemodify() fails when repeating :e. Solution: Do not go before the tail. (Rob Pilling, closes #5024)
* patch 8.1.1921: more functions can be used as methodsv8.1.1921Bram Moolenaar2019-08-241-1/+1
| | | | | Problem: More functions can be used as methods. Solution: Make various functions usable as a method.
* patch 8.1.1336: some eval functionality is not covered by testsv8.1.1336Bram Moolenaar2019-05-161-6/+0
| | | | | Problem: Some eval functionality is not covered by tests. Solution: Add a few more test cases. (Masato Nishihata, closes #4374)
* patch 8.0.0485: not all windows commands are testedv8.0.0485Bram Moolenaar2017-03-191-1/+1
| | | | | | | Problem: Not all windows commands are tested. Solution: Add more tests for windows commands. (Dominique Pelle, closes #1575) Run test_autocmd separately, it interferes with other tests. Fix tests that depended on side effects.
* patch 8.0.0438: the fnamemodify test may cause later tests to failv8.0.0438Bram Moolenaar2017-03-091-1/+5
| | | | | | Problem: The fnamemodify test changes 'shell' in a way later tests may not be able to use system(). Solution: Save and restore 'shell'.
* patch 7.4.1654v7.4.1654Bram Moolenaar2016-03-251-0/+6
| | | | | Problem: Crash when using expand('%:S') in a buffer without a name. Solution: Don't set a NUL. (James McCoy, closes #714)
* patch 7.4.1652v7.4.1652Bram Moolenaar2016-03-251-0/+43
Problem: Old style test for fnamemodify(). Solution: Turn it into a new style test.