Mercurial > vim
view src/testdir/test_lua.vim @ 11083:ae86651164d7 v8.0.0430
patch 8.0.0430: options test fails or hangs on MS-Windows
commit https://github.com/vim/vim/commit/bb962262eb6b18d93161d7506317d215ae80bfe5
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Mar 8 00:01:35 2017 +0100
patch 8.0.0430: options test fails or hangs on MS-Windows
Problem: Options test fails or hangs on MS-Windows.
Solution: Run it separately instead of part of test_alot. Use "-S" instead
of "-u" to run the script. Fix failures.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Wed, 08 Mar 2017 00:15:04 +0100 |
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