Mercurial > vim
view src/testdir/test_interrupt.vim @ 28433:367439b95aba v8.2.4741
patch 8.2.4741: startup test fails
Commit: https://github.com/vim/vim/commit/60895f3e36def9beb7d5463e792e5154ad9a7a0a
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Apr 12 14:23:19 2022 +0100
patch 8.2.4741: startup test fails
Problem: Startup test fails.
Solution: Avoid an error for verbose expansion. Fix that the "0verbose"
command modifier doesn't work.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Tue, 12 Apr 2022 15:30:05 +0200 |
parents | 08940efa6b4e |
children | 860f148e7a64 |
line wrap: on
line source
" Test behavior of interrupt() let s:bufwritepre_called = 0 let s:bufwritepost_called = 0 func s:bufwritepre() let s:bufwritepre_called = 1 call interrupt() endfunction func s:bufwritepost() let s:bufwritepost_called = 1 endfunction func Test_interrupt() new Xfile let n = 0 try au BufWritePre Xfile call s:bufwritepre() au BufWritePost Xfile call s:bufwritepost() w! catch /^Vim:Interrupt$/ endtry call assert_equal(1, s:bufwritepre_called) call assert_equal(0, s:bufwritepost_called) call assert_equal(0, filereadable('Xfile')) endfunc " vim: shiftwidth=2 sts=2 expandtab