view src/testdir/test_lua.vim @ 14085:59e76d550c10 v8.1.0060

patch 8.1.0060: crash when autocommands delete the current buffer commit https://github.com/vim/vim/commit/600323b4ef51a58a8e800d8ca469383a3c911db7 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jun 16 22:16:47 2018 +0200 patch 8.1.0060: crash when autocommands delete the current buffer Problem: Crash when autocommands delete the current buffer. (Dominique Pelle) Solution: Check that autocommands don't change the buffer.
author Christian Brabandt <cb@256bit.org>
date Sat, 16 Jun 2018 22:30:06 +0200
parents 6c3d42d18366
children 2e95ea9afa1e
line wrap: on
line source

" Tests for Lua.
" TODO: move tests from test85.in here.

if !has('lua')
  finish
endif

func Test_luado()
  new
  call setline(1, ['one', 'two', 'three'])
  luado 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'])
  luado vim.command("new")
  call assert_equal(wincount + 1, winnr('$'))
  bwipe!
  bwipe!
endfunc