Mercurial > vim
view src/testdir/test_exit.vim @ 14995:bc0f3c4fb992 v8.1.0509
patch 8.1.0509: checking cwd not accessible fails for root
commit https://github.com/vim/vim/commit/0b38f54730c3f9835ddade01c2263ce0f56c1c0f
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Nov 3 21:47:16 2018 +0100
patch 8.1.0509: checking cwd not accessible fails for root
Problem: Checking cwd not accessible fails for root. (James McCoy)
Solution: Skip this part of the test for root. (closes https://github.com/vim/vim/issues/3595)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 03 Nov 2018 22:00:06 +0100 |
parents | 94e638936d3e |
children | 9c90cf08cfa8 |
line wrap: on
line source
" Tests for exiting Vim. source shared.vim func Test_exiting() let after = [ \ 'au QuitPre * call writefile(["QuitPre"], "Xtestout")', \ 'au ExitPre * call writefile(["ExitPre"], "Xtestout", "a")', \ 'quit', \ ] if RunVim([], after, '') call assert_equal(['QuitPre', 'ExitPre'], readfile('Xtestout')) endif call delete('Xtestout') let after = [ \ 'au QuitPre * call writefile(["QuitPre"], "Xtestout")', \ 'au ExitPre * call writefile(["ExitPre"], "Xtestout", "a")', \ 'help', \ 'wincmd w', \ 'quit', \ ] if RunVim([], after, '') call assert_equal(['QuitPre', 'ExitPre'], readfile('Xtestout')) endif call delete('Xtestout') let after = [ \ 'au QuitPre * call writefile(["QuitPre"], "Xtestout")', \ 'au ExitPre * call writefile(["ExitPre"], "Xtestout", "a")', \ 'split', \ 'new', \ 'qall', \ ] if RunVim([], after, '') call assert_equal(['QuitPre', 'ExitPre'], readfile('Xtestout')) endif call delete('Xtestout') let after = [ \ 'au QuitPre * call writefile(["QuitPre"], "Xtestout", "a")', \ 'au ExitPre * call writefile(["ExitPre"], "Xtestout", "a")', \ 'augroup nasty', \ ' au ExitPre * split', \ 'augroup END', \ 'quit', \ 'augroup nasty', \ ' au! ExitPre', \ 'augroup END', \ 'quit', \ ] if RunVim([], after, '') call assert_equal(['QuitPre', 'ExitPre', 'QuitPre', 'ExitPre'], \ readfile('Xtestout')) endif call delete('Xtestout') endfunc