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.

a72514945b

Co-authored-by: Bram Moolenaar <Bram@vim.org>
This commit is contained in:
zeertzjq 2024-07-16 14:36:18 +08:00
parent 598fd77d95
commit 76aede1162

View File

@ -86,8 +86,8 @@ func Test_signal_INT()
throw 'Skipped: INT signal not supported' throw 'Skipped: INT signal not supported'
endif endif
" Skip the rest of the test when running with valgrind as signal INT is not " Skip the test when running with valgrind as signal INT is not received
" received somehow by Vim when running with valgrind. " somehow by Vim when running with valgrind.
let cmd = GetVimCommand() let cmd = GetVimCommand()
if cmd =~ 'valgrind' if cmd =~ 'valgrind'
throw 'Skipped: cannot test signal INT with valgrind' throw 'Skipped: cannot test signal INT with valgrind'
@ -120,10 +120,6 @@ func Test_deadly_signal_TERM()
throw 'Skipped: TERM signal not supported' throw 'Skipped: TERM signal not supported'
endif endif
CheckRunVimInTerminal 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 " 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. " the test would then fail again if they are not deleted first.