summaryrefslogtreecommitdiffstats
path: root/src/evalfunc.c
diff options
context:
space:
mode:
authorYegappan Lakshmanan <yegappan@yahoo.com>2021-06-21 18:44:26 +0200
committerBram Moolenaar <Bram@vim.org>2021-06-21 18:44:26 +0200
commitf1e7449d567c630601aa0cec6c663b791785a668 (patch)
treeb2c0247a651d4fc70af649b1951392d5acca9658 /src/evalfunc.c
parent2ac4b2536a40e5cd75b4ff7a3d44a282d2f4f008 (diff)
patch 8.2.3028: GUI mouse events not testedv8.2.3028
Problem: GUI mouse events not tested. Solution: Add test_gui_mouse_event(). Add mouse tests. Also add a few viminfo tests. (Yegappan Lakshmanan, closes #8407)
Diffstat (limited to 'src/evalfunc.c')
-rw-r--r--src/evalfunc.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/evalfunc.c b/src/evalfunc.c
index fdcc00fe87..f8af8ef812 100644
--- a/src/evalfunc.c
+++ b/src/evalfunc.c
@@ -1696,6 +1696,8 @@ static funcentry_T global_functions[] =
ret_void, f_test_garbagecollect_soon},
{"test_getvalue", 1, 1, FEARG_1, NULL,
ret_number, f_test_getvalue},
+ {"test_gui_mouse_event", 5, 5, 0, NULL,
+ ret_void, f_test_gui_mouse_event},
{"test_ignore_error", 1, 1, FEARG_1, NULL,
ret_void, f_test_ignore_error},
{"test_null_blob", 0, 0, 0, NULL,