aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2024-07-16 14:36:18 +0800
committerzeertzjq <zeertzjq@outlook.com>2024-07-16 14:38:04 +0800
commit76aede11622aa790cbe5de629b0fb9c9fe2770ab (patch)
treeef0c6840a51e1010b63b560dbdb0ac7c0af1220b
parent598fd77d952364d4dd3433425afe9798dac15206 (diff)
downloadrneovim-76aede11622aa790cbe5de629b0fb9c9fe2770ab.tar.gz
rneovim-76aede11622aa790cbe5de629b0fb9c9fe2770ab.tar.bz2
rneovim-76aede11622aa790cbe5de629b0fb9c9fe2770ab.zip
vim-patch:8.2.2276: list of distributed files is outdated
Problem: List of distributed files is outdated. Solution: Update the file list. Minor comment updates. https://github.com/vim/vim/commit/a72514945bc3edd4fc4d745004e37c5d5487c98d Co-authored-by: Bram Moolenaar <Bram@vim.org>
-rw-r--r--test/old/testdir/test_signals.vim8
1 files changed, 2 insertions, 6 deletions
diff --git a/test/old/testdir/test_signals.vim b/test/old/testdir/test_signals.vim
index 667448a7c2..2f9b6c09d8 100644
--- a/test/old/testdir/test_signals.vim
+++ b/test/old/testdir/test_signals.vim
@@ -86,8 +86,8 @@ func Test_signal_INT()
throw 'Skipped: INT signal not supported'
endif
- " Skip the rest of the test when running with valgrind as signal INT is not
- " received somehow by Vim when running with valgrind.
+ " Skip the test when running with valgrind as signal INT is not received
+ " somehow by Vim when running with valgrind.
let cmd = GetVimCommand()
if cmd =~ 'valgrind'
throw 'Skipped: cannot test signal INT with valgrind'
@@ -120,10 +120,6 @@ func Test_deadly_signal_TERM()
throw 'Skipped: TERM signal not supported'
endif
CheckRunVimInTerminal
- let cmd = GetVimCommand()
- if cmd =~ 'valgrind'
- throw 'Skipped: cannot test signal TERM with valgrind'
- endif
" If test fails once, it can leave temporary files and trying to rerun
" the test would then fail again if they are not deleted first.