summaryrefslogtreecommitdiffstats
path: root/src/testdir/test_gui.vim
diff options
context:
space:
mode:
authorChristopher Plewright <chris@createng.com>2022-12-30 16:54:58 +0000
committerBram Moolenaar <Bram@vim.org>2022-12-30 16:54:58 +0000
commit7b0afc1d7698a79423c7b066a5d8d20dbb8a295a (patch)
tree91b54b32537fc514333de415153a6cc6cb09efd5 /src/testdir/test_gui.vim
parent96dd34e53492913029323dad902831380fa460d0 (diff)
patch 9.0.1112: test_mswin_event() can hangv9.0.1112
Problem: test_mswin_event() can hang. Solution: Add the "execute" argument to process events right away. (Christopher Plewright, closes #11760)
Diffstat (limited to 'src/testdir/test_gui.vim')
-rw-r--r--src/testdir/test_gui.vim3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/testdir/test_gui.vim b/src/testdir/test_gui.vim
index 0c1e0a5771..013b1773b2 100644
--- a/src/testdir/test_gui.vim
+++ b/src/testdir/test_gui.vim
@@ -1694,7 +1694,7 @@ func Test_gui_lowlevel_keyevent()
\ [[0x11, 0x10, 0x28], "C-S-Down", 4],
\ [[0x11, 0x30], "C-0", 4],
\ [[0x11, 0x31], "C-1", 4],
- \ [[0x11, 0x32], "C-2", 4],
+ \ [[0x11, 0x32], "C-@", 0],
\ [[0x11, 0x33], "C-3", 4],
\ [[0x11, 0x34], "C-4", 4],
\ [[0x11, 0x35], "C-5", 4],
@@ -1715,6 +1715,7 @@ func Test_gui_lowlevel_keyevent()
\ [[0x11, 0x6A], "C-*", 4],
\ [[0x11, 0x6B], "C-+", 4],
\ [[0x11, 0x6D], "C--", 4],
+ \ [[0x11, 0xBD], "C-_", 0],
\ [[0x11, 0x70], "C-F1", 4],
\ [[0x11, 0x10, 0x70], "C-S-F1", 4],
\ [[0x11, 0x71], "C-F2", 4],