Mercurial > vim
view src/testdir/test_python2.vim @ 15721:e84eb23f4670 v8.1.0868
patch 8.1.0868: crash if triggering garbage collector after a function call
commit https://github.com/vim/vim/commit/889da2f2438c8168f9a25dc776360b81109bad44
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Feb 2 14:02:30 2019 +0100
patch 8.1.0868: crash if triggering garbage collector after a function call
Problem: Crash if triggering garbage collector after a function call.
(Michael Henry)
Solution: Don't call the garbage collector right away, do it later.
(closes #3894)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 02 Feb 2019 14:15:12 +0100 |
parents | ee63f4fe3d45 |
children | a83c4b1f8ea2 |
line wrap: on
line source
" Test for python 2 commands. " TODO: move tests from test87.in here. if !has('python') finish endif func Test_pydo() " Check deleting lines does not trigger ml_get error. py import vim new call setline(1, ['one', 'two', 'three']) pydo vim.command("%d_") bwipe! " Check switching to another buffer does not trigger ml_get error. new let wincount = winnr('$') call setline(1, ['one', 'two', 'three']) pydo vim.command("new") call assert_equal(wincount + 1, winnr('$')) bwipe! bwipe! endfunc func Test_set_cursor() " Check that setting the cursor position works. py import vim new call setline(1, ['first line', 'second line']) normal gg pydo vim.current.window.cursor = (1, 5) call assert_equal([1, 6], [line('.'), col('.')]) " Check that movement after setting cursor position keeps current column. normal j call assert_equal([2, 6], [line('.'), col('.')]) endfunc func Test_vim_function() " Check creating vim.Function object py import vim func s:foo() return matchstr(expand('<sfile>'), '<SNR>\zs\d\+_foo$') endfunc let name = '<SNR>' . s:foo() try py f = vim.bindeval('function("s:foo")') call assert_equal(name, pyeval('f.name')) catch call assert_false(v:exception) endtry try py f = vim.Function('\x80\xfdR' + vim.eval('s:foo()')) call assert_equal(name, pyeval('f.name')) catch call assert_false(v:exception) endtry py del f delfunc s:foo endfunc