diff options
| author | zeertzjq <zeertzjq@outlook.com> | 2022-11-07 07:21:46 +0800 |
|---|---|---|
| committer | zeertzjq <zeertzjq@outlook.com> | 2022-11-07 07:33:59 +0800 |
| commit | 7e1d9c560b09cacb78b2fc8f9428a77d6fca66e1 (patch) | |
| tree | c1c6e5463d515ddc174ca71554d1203f29983c28 /src/nvim/testdir/test_buffer.vim | |
| parent | bdf87efeb523aecffde7dbf3c17806f7ca98471f (diff) | |
| download | rneovim-7e1d9c560b09cacb78b2fc8f9428a77d6fca66e1.tar.gz rneovim-7e1d9c560b09cacb78b2fc8f9428a77d6fca66e1.tar.bz2 rneovim-7e1d9c560b09cacb78b2fc8f9428a77d6fca66e1.zip | |
vim-patch:8.2.2873: not enough tests for writing buffers
Problem: Not enough tests for writing buffers.
Solution: Add a few more tests. (Yegappan Lakshmanan, closes vim/vim#8229)
https://github.com/vim/vim/commit/46aa6f93acb5d932d2893606d980a6b4b8a9594c
Co-authored-by: Yegappan Lakshmanan <yegappan@yahoo.com>
Diffstat (limited to 'src/nvim/testdir/test_buffer.vim')
| -rw-r--r-- | src/nvim/testdir/test_buffer.vim | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_buffer.vim b/src/nvim/testdir/test_buffer.vim index d8d22ff872..3300278802 100644 --- a/src/nvim/testdir/test_buffer.vim +++ b/src/nvim/testdir/test_buffer.vim @@ -434,4 +434,24 @@ func Test_buf_pattern_invalid() bwipe! endfunc +" Test for the 'maxmem' and 'maxmemtot' options +func Test_buffer_maxmem() + " use 1KB per buffer and 2KB for all the buffers + " set maxmem=1 maxmemtot=2 + new + let v:errmsg = '' + " try opening some files + edit test_arglist.vim + call assert_equal('test_arglist.vim', bufname()) + edit test_eval_stuff.vim + call assert_equal('test_eval_stuff.vim', bufname()) + b test_arglist.vim + call assert_equal('test_arglist.vim', bufname()) + b test_eval_stuff.vim + call assert_equal('test_eval_stuff.vim', bufname()) + close + call assert_equal('', v:errmsg) + " set maxmem& maxmemtot& +endfunc + " vim: shiftwidth=2 sts=2 expandtab |