Mercurial > vim
view src/testdir/test_signals.vim @ 16407:cbb6e28af4cb v8.1.1208
patch 8.1.1208: links to repository use wrong file name
commit https://github.com/vim/vim/commit/c8cc0ad477c1921afb11080fb96c764369cf04b8
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Apr 26 21:31:38 2019 +0200
patch 8.1.1208: links to repository use wrong file name
Problem: Links to repository use wrong file name.
Solution: Swap the file names. (Nahuel Ourthe, closes https://github.com/vim/vim/issues/4304)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 26 Apr 2019 21:45:07 +0200 |
parents | 1ab0d1f7807a |
children | a0e98821a2ed |
line wrap: on
line source
" Test signal handling. if !has('unix') finish endif if has('gui_running') " Signals only work for terminals, and won't work for GUI. finish endif source shared.vim " Test signal WINCH (window resize signal) func Test_signal_WINCH() let signals = system('kill -l') if signals !~ '\<WINCH\>' " signal WINCH is not available, skip the test. return endif " We do not actually want to change the size of the terminal. let old_WS = '' if exists('&t_WS') let old_WS = &t_WS let &t_WS = '' endif let old_lines = &lines let old_columns = &columns let new_lines = &lines - 2 let new_columns = &columns - 2 exe 'set lines=' . new_lines exe 'set columns=' . new_columns call assert_equal(new_lines, &lines) call assert_equal(new_columns, &columns) " Send signal and wait for signal to be processed. " 'lines' and 'columns' should have been restored " after handing signal WINCH. exe 'silent !kill -s WINCH ' . getpid() call WaitForAssert({-> assert_equal(old_lines, &lines)}) call assert_equal(old_columns, &columns) if old_WS != '' let &t_WS = old_WS endif endfunc