Bram Moolenaar | 7b6156f | 2015-12-28 16:01:26 +0100 | [diff] [blame] | 1 | # |
2 | # Common Makefile, defines the list of tests to run. | ||||
3 | # | ||||
4 | |||||
Bram Moolenaar | 8be2fbb | 2017-02-23 19:32:47 +0100 | [diff] [blame] | 5 | # Options for protecting the tests against undesirable interaction with the |
6 | # environment | ||||
7 | NO_PLUGINS = --noplugin --not-a-term | ||||
8 | NO_INITS = -U NONE $(NO_PLUGINS) | ||||
Bram Moolenaar | d2227a0 | 2016-02-25 22:37:42 +0100 | [diff] [blame] | 9 | |
Bram Moolenaar | a608243 | 2015-12-28 16:26:45 +0100 | [diff] [blame] | 10 | # The first script creates small.vim. |
Bram Moolenaar | 622b356 | 2020-07-27 20:02:41 +0200 | [diff] [blame] | 11 | SCRIPTS_FIRST = test1.out |
Bram Moolenaar | a608243 | 2015-12-28 16:26:45 +0100 | [diff] [blame] | 12 | |
Bram Moolenaar | ec5929d | 2020-04-07 20:53:39 +0200 | [diff] [blame] | 13 | # Tests for Vim9 script. |
14 | TEST_VIM9 = \ | ||||
Bram Moolenaar | cfe435d | 2020-04-25 20:02:55 +0200 | [diff] [blame] | 15 | test_vim9_cmd \ |
Bram Moolenaar | ec5929d | 2020-04-07 20:53:39 +0200 | [diff] [blame] | 16 | test_vim9_disassemble \ |
17 | test_vim9_expr \ | ||||
18 | test_vim9_func \ | ||||
19 | test_vim9_script | ||||
20 | |||||
21 | TEST_VIM9_RES = \ | ||||
Bram Moolenaar | cfe435d | 2020-04-25 20:02:55 +0200 | [diff] [blame] | 22 | test_vim9_cmd.res \ |
Bram Moolenaar | ec5929d | 2020-04-07 20:53:39 +0200 | [diff] [blame] | 23 | test_vim9_disassemble.res \ |
24 | test_vim9_expr.res \ | ||||
25 | test_vim9_func.res \ | ||||
26 | test_vim9_script.res | ||||
27 | |||||
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 28 | # Individual tests, including the ones part of test_alot. |
29 | # Please keep sorted up to test_alot. | ||||
30 | NEW_TESTS = \ | ||||
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 31 | test_arabic \ |
Bram Moolenaar | 209b8e3 | 2019-03-14 13:43:24 +0100 | [diff] [blame] | 32 | test_arglist \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 33 | test_assert \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 34 | test_autochdir \ |
35 | test_autocmd \ | ||||
36 | test_autoload \ | ||||
37 | test_backspace_opt \ | ||||
38 | test_backup \ | ||||
Bram Moolenaar | 2f10658 | 2019-05-08 21:59:25 +0200 | [diff] [blame] | 39 | test_balloon \ |
Bram Moolenaar | b46fecd | 2019-06-15 17:58:09 +0200 | [diff] [blame] | 40 | test_balloon_gui \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 41 | test_behave \ |
Bram Moolenaar | 6e5ea8d | 2019-01-12 22:47:31 +0100 | [diff] [blame] | 42 | test_blob \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 43 | test_blockedit \ |
44 | test_breakindent \ | ||||
Bram Moolenaar | 9f6277b | 2020-02-11 22:04:02 +0100 | [diff] [blame] | 45 | test_buffer \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 46 | test_bufline \ |
47 | test_bufwintabinfo \ | ||||
48 | test_cd \ | ||||
49 | test_cdo \ | ||||
50 | test_changedtick \ | ||||
51 | test_changelist \ | ||||
52 | test_channel \ | ||||
53 | test_charsearch \ | ||||
54 | test_charsearch_utf8 \ | ||||
Bram Moolenaar | f0ab01f | 2019-05-06 22:00:00 +0200 | [diff] [blame] | 55 | test_checkpath \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 56 | test_cindent \ |
Bram Moolenaar | e52702f | 2020-06-04 18:22:13 +0200 | [diff] [blame] | 57 | test_cjk_linebreak \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 58 | test_clientserver \ |
59 | test_close_count \ | ||||
60 | test_cmdline \ | ||||
61 | test_command_count \ | ||||
Bram Moolenaar | b7e2483 | 2020-06-24 13:37:35 +0200 | [diff] [blame] | 62 | test_comments \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 63 | test_comparators \ |
64 | test_compiler \ | ||||
65 | test_conceal \ | ||||
Bram Moolenaar | 9937a05 | 2019-06-15 15:45:06 +0200 | [diff] [blame] | 66 | test_const \ |
Bram Moolenaar | c9630d2 | 2020-06-13 13:20:48 +0200 | [diff] [blame] | 67 | test_cpoptions \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 68 | test_crypt \ |
69 | test_cscope \ | ||||
70 | test_cursor_func \ | ||||
Bram Moolenaar | 410e98a | 2019-09-09 22:05:49 +0200 | [diff] [blame] | 71 | test_cursorline \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 72 | test_curswant \ |
Bram Moolenaar | 113bf06 | 2019-04-17 16:54:05 +0200 | [diff] [blame] | 73 | test_debugger \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 74 | test_delete \ |
75 | test_diffmode \ | ||||
76 | test_digraph \ | ||||
77 | test_display \ | ||||
78 | test_edit \ | ||||
Bram Moolenaar | 8a7d654 | 2020-01-26 15:56:19 +0100 | [diff] [blame] | 79 | test_environ \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 80 | test_erasebackword \ |
81 | test_escaped_glob \ | ||||
82 | test_eval_stuff \ | ||||
Bram Moolenaar | 99531a7 | 2019-01-24 22:42:37 +0100 | [diff] [blame] | 83 | test_ex_equal \ |
Bram Moolenaar | 6c307dc | 2020-04-05 23:04:57 +0200 | [diff] [blame] | 84 | test_ex_mode \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 85 | test_ex_undo \ |
86 | test_ex_z \ | ||||
Bram Moolenaar | 94f82cb | 2019-07-24 22:30:27 +0200 | [diff] [blame] | 87 | test_excmd \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 88 | test_exec_while_if \ |
89 | test_execute_func \ | ||||
90 | test_exists \ | ||||
91 | test_exists_autocmd \ | ||||
Bram Moolenaar | 209b8e3 | 2019-03-14 13:43:24 +0100 | [diff] [blame] | 92 | test_exit \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 93 | test_expand \ |
94 | test_expand_dllpath \ | ||||
95 | test_expand_func \ | ||||
96 | test_expr \ | ||||
97 | test_expr_utf8 \ | ||||
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 98 | test_feedkeys \ |
99 | test_file_perm \ | ||||
100 | test_file_size \ | ||||
Bram Moolenaar | 5e66b42 | 2019-01-24 21:58:10 +0100 | [diff] [blame] | 101 | test_filechanged \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 102 | test_fileformat \ |
103 | test_filetype \ | ||||
104 | test_filter_cmd \ | ||||
105 | test_filter_map \ | ||||
106 | test_find_complete \ | ||||
107 | test_findfile \ | ||||
108 | test_fixeol \ | ||||
Bram Moolenaar | 077a1e6 | 2020-06-08 20:50:43 +0200 | [diff] [blame] | 109 | test_flatten \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 110 | test_float_func \ |
111 | test_fnameescape \ | ||||
112 | test_fnamemodify \ | ||||
113 | test_fold \ | ||||
114 | test_functions \ | ||||
Bram Moolenaar | 6b0e528 | 2020-06-04 15:52:25 +0200 | [diff] [blame] | 115 | test_function_lists \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 116 | test_ga \ |
117 | test_getcwd \ | ||||
118 | test_getvar \ | ||||
119 | test_gf \ | ||||
120 | test_glob2regpat \ | ||||
121 | test_global \ | ||||
122 | test_gn \ | ||||
123 | test_goto \ | ||||
124 | test_gui \ | ||||
125 | test_gui_init \ | ||||
126 | test_hardcopy \ | ||||
127 | test_help \ | ||||
128 | test_help_tagjump \ | ||||
129 | test_hide \ | ||||
130 | test_highlight \ | ||||
131 | test_history \ | ||||
132 | test_hlsearch \ | ||||
133 | test_iminsert \ | ||||
134 | test_increment \ | ||||
135 | test_increment_dbcs \ | ||||
Bram Moolenaar | bd7206e | 2020-03-06 20:36:04 +0100 | [diff] [blame] | 136 | test_indent \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 137 | test_ins_complete \ |
Bram Moolenaar | 67a2deb | 2019-11-25 00:05:32 +0100 | [diff] [blame] | 138 | test_interrupt \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 139 | test_job_fails \ |
140 | test_join \ | ||||
141 | test_json \ | ||||
142 | test_jumplist \ | ||||
143 | test_jumps \ | ||||
144 | test_lambda \ | ||||
145 | test_langmap \ | ||||
146 | test_largefile \ | ||||
147 | test_let \ | ||||
148 | test_lineending \ | ||||
149 | test_lispwords \ | ||||
150 | test_listchars \ | ||||
151 | test_listdict \ | ||||
Bram Moolenaar | a334772 | 2019-05-11 21:14:24 +0200 | [diff] [blame] | 152 | test_listener \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 153 | test_listlbr \ |
154 | test_listlbr_utf8 \ | ||||
155 | test_lua \ | ||||
156 | test_makeencoding \ | ||||
157 | test_man \ | ||||
158 | test_maparg \ | ||||
159 | test_mapping \ | ||||
160 | test_marks \ | ||||
161 | test_match \ | ||||
162 | test_matchadd_conceal \ | ||||
163 | test_matchadd_conceal_utf8 \ | ||||
Bram Moolenaar | 209b8e3 | 2019-03-14 13:43:24 +0100 | [diff] [blame] | 164 | test_memory_usage \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 165 | test_menu \ |
166 | test_messages \ | ||||
Bram Moolenaar | 5e94a29 | 2020-03-19 18:46:57 +0100 | [diff] [blame] | 167 | test_method \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 168 | test_mksession \ |
169 | test_mksession_utf8 \ | ||||
Bram Moolenaar | 515545e | 2020-03-22 14:08:59 +0100 | [diff] [blame] | 170 | test_modeless \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 171 | test_modeline \ |
172 | test_move \ | ||||
Bram Moolenaar | 622b356 | 2020-07-27 20:02:41 +0200 | [diff] [blame] | 173 | test_mzscheme \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 174 | test_nested_function \ |
175 | test_netbeans \ | ||||
176 | test_normal \ | ||||
177 | test_number \ | ||||
178 | test_options \ | ||||
179 | test_packadd \ | ||||
180 | test_partial \ | ||||
181 | test_paste \ | ||||
182 | test_perl \ | ||||
183 | test_plus_arg_edit \ | ||||
184 | test_popup \ | ||||
Bram Moolenaar | 4d784b2 | 2019-05-25 19:51:39 +0200 | [diff] [blame] | 185 | test_popupwin \ |
Bram Moolenaar | 8e95636 | 2019-08-25 23:08:17 +0200 | [diff] [blame] | 186 | test_popupwin_textprop \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 187 | test_preview \ |
188 | test_profile \ | ||||
189 | test_prompt_buffer \ | ||||
190 | test_put \ | ||||
191 | test_python2 \ | ||||
192 | test_python3 \ | ||||
193 | test_pyx2 \ | ||||
194 | test_pyx3 \ | ||||
195 | test_quickfix \ | ||||
196 | test_quotestar \ | ||||
Bram Moolenaar | 06b0b4b | 2019-11-25 15:40:55 +0100 | [diff] [blame] | 197 | test_random \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 198 | test_recover \ |
199 | test_regex_char_classes \ | ||||
200 | test_regexp_latin \ | ||||
201 | test_regexp_utf8 \ | ||||
202 | test_registers \ | ||||
203 | test_reltime \ | ||||
Bram Moolenaar | ef8c956 | 2019-03-02 06:42:07 +0100 | [diff] [blame] | 204 | test_rename \ |
Bram Moolenaar | 8c62a08 | 2019-02-08 14:34:10 +0100 | [diff] [blame] | 205 | test_restricted \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 206 | test_retab \ |
207 | test_ruby \ | ||||
208 | test_scriptnames \ | ||||
209 | test_scroll_opt \ | ||||
210 | test_scrollbind \ | ||||
211 | test_search \ | ||||
Bram Moolenaar | 9dfa313 | 2019-05-04 21:08:40 +0200 | [diff] [blame] | 212 | test_search_stat \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 213 | test_searchpos \ |
Bram Moolenaar | 515545e | 2020-03-22 14:08:59 +0100 | [diff] [blame] | 214 | test_selectmode \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 215 | test_set \ |
216 | test_sha256 \ | ||||
Bram Moolenaar | d5e3cc1 | 2019-08-12 14:38:02 +0200 | [diff] [blame] | 217 | test_shift \ |
Bram Moolenaar | b45125b | 2019-03-24 20:18:40 +0100 | [diff] [blame] | 218 | test_shortpathname \ |
Bram Moolenaar | db77b84 | 2019-03-24 14:58:31 +0100 | [diff] [blame] | 219 | test_signals \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 220 | test_signs \ |
221 | test_smartindent \ | ||||
222 | test_sort \ | ||||
Bram Moolenaar | 427f5b6 | 2019-06-09 13:43:51 +0200 | [diff] [blame] | 223 | test_sound \ |
Bram Moolenaar | 2b61852 | 2019-01-12 13:26:03 +0100 | [diff] [blame] | 224 | test_source \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 225 | test_source_utf8 \ |
226 | test_spell \ | ||||
Bram Moolenaar | aa970ab | 2020-08-02 16:10:39 +0200 | [diff] [blame] | 227 | test_spell_utf8 \ |
Bram Moolenaar | 08cc374 | 2019-08-11 22:51:14 +0200 | [diff] [blame] | 228 | test_spellfile \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 229 | test_startup \ |
230 | test_startup_utf8 \ | ||||
231 | test_stat \ | ||||
232 | test_statusline \ | ||||
233 | test_substitute \ | ||||
234 | test_suspend \ | ||||
235 | test_swap \ | ||||
236 | test_syn_attr \ | ||||
237 | test_syntax \ | ||||
238 | test_system \ | ||||
239 | test_tab \ | ||||
240 | test_tabline \ | ||||
241 | test_tabpage \ | ||||
242 | test_tagcase \ | ||||
Bram Moolenaar | 45e18cb | 2019-04-28 18:05:35 +0200 | [diff] [blame] | 243 | test_tagfunc \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 244 | test_tagjump \ |
245 | test_taglist \ | ||||
246 | test_tcl \ | ||||
Bram Moolenaar | 905dd90 | 2019-04-07 14:21:47 +0200 | [diff] [blame] | 247 | test_termcodes \ |
Bram Moolenaar | 4d784b2 | 2019-05-25 19:51:39 +0200 | [diff] [blame] | 248 | test_termencoding \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 249 | test_terminal \ |
Bram Moolenaar | 1112c0f | 2020-07-01 21:53:50 +0200 | [diff] [blame] | 250 | test_terminal2 \ |
Bram Moolenaar | 18aa13d | 2020-07-11 13:09:36 +0200 | [diff] [blame] | 251 | test_terminal3 \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 252 | test_terminal_fail \ |
253 | test_textformat \ | ||||
254 | test_textobjects \ | ||||
255 | test_textprop \ | ||||
256 | test_timers \ | ||||
257 | test_true_false \ | ||||
Bram Moolenaar | 1f06823 | 2019-11-03 16:17:26 +0100 | [diff] [blame] | 258 | test_trycatch \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 259 | test_undo \ |
260 | test_unlet \ | ||||
Bram Moolenaar | b45125b | 2019-03-24 20:18:40 +0100 | [diff] [blame] | 261 | test_user_func \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 262 | test_usercommands \ |
263 | test_utf8 \ | ||||
264 | test_utf8_comparisons \ | ||||
265 | test_vartabs \ | ||||
Bram Moolenaar | 278e838 | 2020-04-13 18:25:33 +0200 | [diff] [blame] | 266 | test_version \ |
Bram Moolenaar | ec5929d | 2020-04-07 20:53:39 +0200 | [diff] [blame] | 267 | $(TEST_VIM9) \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 268 | test_viminfo \ |
269 | test_vimscript \ | ||||
270 | test_virtualedit \ | ||||
271 | test_visual \ | ||||
272 | test_winbar \ | ||||
273 | test_winbuf_close \ | ||||
274 | test_window_cmd \ | ||||
275 | test_window_id \ | ||||
276 | test_windows_home \ | ||||
Bram Moolenaar | e93e5a5 | 2019-02-15 20:22:38 +0100 | [diff] [blame] | 277 | test_wnext \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 278 | test_wordcount \ |
279 | test_writefile \ | ||||
280 | test_xxd \ | ||||
281 | test_alot_latin \ | ||||
282 | test_alot_utf8 \ | ||||
283 | test_alot | ||||
Bram Moolenaar | 7b6156f | 2015-12-28 16:01:26 +0100 | [diff] [blame] | 284 | |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 285 | # Test targets that use runtest.vim. |
Bram Moolenaar | 4d58502 | 2016-04-14 19:50:22 +0200 | [diff] [blame] | 286 | # Keep test_alot*.res as the last one, sort the others. |
Bram Moolenaar | 6e77df2 | 2017-11-21 11:43:08 +0100 | [diff] [blame] | 287 | # test_largefile.res is omitted, it uses too much resources to run on CI. |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 288 | NEW_TESTS_RES = \ |
289 | test_arabic.res \ | ||||
290 | test_arglist.res \ | ||||
291 | test_assert.res \ | ||||
292 | test_autochdir.res \ | ||||
293 | test_autocmd.res \ | ||||
294 | test_autoload.res \ | ||||
295 | test_backspace_opt.res \ | ||||
Bram Moolenaar | 2f10658 | 2019-05-08 21:59:25 +0200 | [diff] [blame] | 296 | test_balloon.res \ |
Bram Moolenaar | b46fecd | 2019-06-15 17:58:09 +0200 | [diff] [blame] | 297 | test_balloon_gui.res \ |
Bram Moolenaar | 6e5ea8d | 2019-01-12 22:47:31 +0100 | [diff] [blame] | 298 | test_blob.res \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 299 | test_blockedit.res \ |
300 | test_breakindent.res \ | ||||
Bram Moolenaar | 9f6277b | 2020-02-11 22:04:02 +0100 | [diff] [blame] | 301 | test_buffer.res \ |
Bram Moolenaar | 842931c | 2020-01-28 21:53:28 +0100 | [diff] [blame] | 302 | test_bufline.res \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 303 | test_bufwintabinfo.res \ |
Bram Moolenaar | 842931c | 2020-01-28 21:53:28 +0100 | [diff] [blame] | 304 | test_cd.res \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 305 | test_cdo.res \ |
Bram Moolenaar | 842931c | 2020-01-28 21:53:28 +0100 | [diff] [blame] | 306 | test_changedtick.res \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 307 | test_changelist.res \ |
308 | test_channel.res \ | ||||
309 | test_charsearch.res \ | ||||
Bram Moolenaar | f0ab01f | 2019-05-06 22:00:00 +0200 | [diff] [blame] | 310 | test_checkpath.res \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 311 | test_cindent.res \ |
Bram Moolenaar | e52702f | 2020-06-04 18:22:13 +0200 | [diff] [blame] | 312 | test_cjk_linebreak.res \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 313 | test_clientserver.res \ |
314 | test_close_count.res \ | ||||
315 | test_cmdline.res \ | ||||
316 | test_command_count.res \ | ||||
Bram Moolenaar | b7e2483 | 2020-06-24 13:37:35 +0200 | [diff] [blame] | 317 | test_comments.res \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 318 | test_comparators.res \ |
319 | test_conceal.res \ | ||||
Bram Moolenaar | 9937a05 | 2019-06-15 15:45:06 +0200 | [diff] [blame] | 320 | test_const.res \ |
Bram Moolenaar | c9630d2 | 2020-06-13 13:20:48 +0200 | [diff] [blame] | 321 | test_cpoptions.res \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 322 | test_crypt.res \ |
323 | test_cscope.res \ | ||||
Bram Moolenaar | 842931c | 2020-01-28 21:53:28 +0100 | [diff] [blame] | 324 | test_cursor_func.res \ |
325 | test_cursorline.res \ | ||||
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 326 | test_curswant.res \ |
Bram Moolenaar | 113bf06 | 2019-04-17 16:54:05 +0200 | [diff] [blame] | 327 | test_debugger.res \ |
Bram Moolenaar | 842931c | 2020-01-28 21:53:28 +0100 | [diff] [blame] | 328 | test_delete.res \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 329 | test_diffmode.res \ |
330 | test_digraph.res \ | ||||
331 | test_display.res \ | ||||
332 | test_edit.res \ | ||||
Bram Moolenaar | 691ddee | 2019-05-09 14:52:41 +0200 | [diff] [blame] | 333 | test_environ.res \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 334 | test_erasebackword.res \ |
335 | test_escaped_glob.res \ | ||||
336 | test_eval_stuff.res \ | ||||
Bram Moolenaar | 94f82cb | 2019-07-24 22:30:27 +0200 | [diff] [blame] | 337 | test_excmd.res \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 338 | test_exec_while_if.res \ |
Bram Moolenaar | 842931c | 2020-01-28 21:53:28 +0100 | [diff] [blame] | 339 | test_execute_func.res \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 340 | test_exists.res \ |
341 | test_exists_autocmd.res \ | ||||
342 | test_exit.res \ | ||||
Bram Moolenaar | 842931c | 2020-01-28 21:53:28 +0100 | [diff] [blame] | 343 | test_expr.res \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 344 | test_file_size.res \ |
Bram Moolenaar | 5e66b42 | 2019-01-24 21:58:10 +0100 | [diff] [blame] | 345 | test_filechanged.res \ |
Bram Moolenaar | 842931c | 2020-01-28 21:53:28 +0100 | [diff] [blame] | 346 | test_fileformat.res \ |
347 | test_filetype.res \ | ||||
348 | test_filter_cmd.res \ | ||||
349 | test_filter_map.res \ | ||||
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 350 | test_find_complete.res \ |
Bram Moolenaar | 842931c | 2020-01-28 21:53:28 +0100 | [diff] [blame] | 351 | test_findfile.res \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 352 | test_fixeol.res \ |
Bram Moolenaar | 077a1e6 | 2020-06-08 20:50:43 +0200 | [diff] [blame] | 353 | test_flatten.res \ |
Bram Moolenaar | 842931c | 2020-01-28 21:53:28 +0100 | [diff] [blame] | 354 | test_float_func.res \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 355 | test_fnameescape.res \ |
356 | test_fold.res \ | ||||
Bram Moolenaar | 842931c | 2020-01-28 21:53:28 +0100 | [diff] [blame] | 357 | test_functions.res \ |
Bram Moolenaar | 6b0e528 | 2020-06-04 15:52:25 +0200 | [diff] [blame] | 358 | test_function_lists.res \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 359 | test_getcwd.res \ |
360 | test_getvar.res \ | ||||
361 | test_gf.res \ | ||||
362 | test_gn.res \ | ||||
Bram Moolenaar | 842931c | 2020-01-28 21:53:28 +0100 | [diff] [blame] | 363 | test_goto.res \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 364 | test_gui.res \ |
365 | test_gui_init.res \ | ||||
366 | test_hardcopy.res \ | ||||
367 | test_help.res \ | ||||
Bram Moolenaar | 842931c | 2020-01-28 21:53:28 +0100 | [diff] [blame] | 368 | test_help_tagjump.res \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 369 | test_hide.res \ |
370 | test_highlight.res \ | ||||
371 | test_history.res \ | ||||
372 | test_hlsearch.res \ | ||||
373 | test_iminsert.res \ | ||||
374 | test_increment.res \ | ||||
375 | test_increment_dbcs.res \ | ||||
Bram Moolenaar | bd7206e | 2020-03-06 20:36:04 +0100 | [diff] [blame] | 376 | test_indent.res \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 377 | test_ins_complete.res \ |
Bram Moolenaar | 67a2deb | 2019-11-25 00:05:32 +0100 | [diff] [blame] | 378 | test_interrupt.res \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 379 | test_job_fails.res \ |
Bram Moolenaar | 842931c | 2020-01-28 21:53:28 +0100 | [diff] [blame] | 380 | test_join.res \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 381 | test_json.res \ |
382 | test_jumplist.res \ | ||||
Bram Moolenaar | 842931c | 2020-01-28 21:53:28 +0100 | [diff] [blame] | 383 | test_lambda.res \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 384 | test_langmap.res \ |
385 | test_let.res \ | ||||
386 | test_lineending.res \ | ||||
387 | test_listchars.res \ | ||||
388 | test_listdict.res \ | ||||
Bram Moolenaar | a334772 | 2019-05-11 21:14:24 +0200 | [diff] [blame] | 389 | test_listener.res \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 390 | test_listlbr.res \ |
391 | test_lua.res \ | ||||
392 | test_makeencoding.res \ | ||||
393 | test_man.res \ | ||||
394 | test_maparg.res \ | ||||
Bram Moolenaar | 4bd88d5 | 2019-10-16 19:27:26 +0200 | [diff] [blame] | 395 | test_mapping.res \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 396 | test_marks.res \ |
Bram Moolenaar | 842931c | 2020-01-28 21:53:28 +0100 | [diff] [blame] | 397 | test_match.res \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 398 | test_matchadd_conceal.res \ |
Bram Moolenaar | 36ddf93 | 2020-03-03 23:06:48 +0100 | [diff] [blame] | 399 | test_matchadd_conceal_utf8.res \ |
Bram Moolenaar | 209b8e3 | 2019-03-14 13:43:24 +0100 | [diff] [blame] | 400 | test_memory_usage.res \ |
Bram Moolenaar | 5e94a29 | 2020-03-19 18:46:57 +0100 | [diff] [blame] | 401 | test_menu.res \ |
Bram Moolenaar | 842931c | 2020-01-28 21:53:28 +0100 | [diff] [blame] | 402 | test_messages.res \ |
Bram Moolenaar | ac92e25 | 2019-08-03 21:58:38 +0200 | [diff] [blame] | 403 | test_method.res \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 404 | test_mksession.res \ |
Bram Moolenaar | 515545e | 2020-03-22 14:08:59 +0100 | [diff] [blame] | 405 | test_modeless.res \ |
Bram Moolenaar | 842931c | 2020-01-28 21:53:28 +0100 | [diff] [blame] | 406 | test_modeline.res \ |
Bram Moolenaar | 622b356 | 2020-07-27 20:02:41 +0200 | [diff] [blame] | 407 | test_mzscheme.res \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 408 | test_nested_function.res \ |
409 | test_netbeans.res \ | ||||
410 | test_normal.res \ | ||||
411 | test_number.res \ | ||||
412 | test_options.res \ | ||||
413 | test_packadd.res \ | ||||
Bram Moolenaar | 842931c | 2020-01-28 21:53:28 +0100 | [diff] [blame] | 414 | test_partial.res \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 415 | test_paste.res \ |
416 | test_perl.res \ | ||||
417 | test_plus_arg_edit.res \ | ||||
Bram Moolenaar | 842931c | 2020-01-28 21:53:28 +0100 | [diff] [blame] | 418 | test_popup.res \ |
Bram Moolenaar | 4d784b2 | 2019-05-25 19:51:39 +0200 | [diff] [blame] | 419 | test_popupwin.res \ |
Bram Moolenaar | 8e95636 | 2019-08-25 23:08:17 +0200 | [diff] [blame] | 420 | test_popupwin_textprop.res \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 421 | test_preview.res \ |
422 | test_profile.res \ | ||||
423 | test_prompt_buffer.res \ | ||||
424 | test_python2.res \ | ||||
425 | test_python3.res \ | ||||
426 | test_pyx2.res \ | ||||
427 | test_pyx3.res \ | ||||
428 | test_quickfix.res \ | ||||
429 | test_quotestar.res \ | ||||
Bram Moolenaar | 06b0b4b | 2019-11-25 15:40:55 +0100 | [diff] [blame] | 430 | test_random.res \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 431 | test_regex_char_classes.res \ |
432 | test_registers.res \ | ||||
Bram Moolenaar | 842931c | 2020-01-28 21:53:28 +0100 | [diff] [blame] | 433 | test_rename.res \ |
Bram Moolenaar | 8c62a08 | 2019-02-08 14:34:10 +0100 | [diff] [blame] | 434 | test_restricted.res \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 435 | test_retab.res \ |
436 | test_ruby.res \ | ||||
437 | test_scriptnames.res \ | ||||
438 | test_scrollbind.res \ | ||||
439 | test_search.res \ | ||||
Bram Moolenaar | 9dfa313 | 2019-05-04 21:08:40 +0200 | [diff] [blame] | 440 | test_search_stat.res \ |
Bram Moolenaar | 515545e | 2020-03-22 14:08:59 +0100 | [diff] [blame] | 441 | test_selectmode.res \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 442 | test_shortpathname.res \ |
Bram Moolenaar | db77b84 | 2019-03-24 14:58:31 +0100 | [diff] [blame] | 443 | test_signals.res \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 444 | test_signs.res \ |
445 | test_smartindent.res \ | ||||
Bram Moolenaar | 842931c | 2020-01-28 21:53:28 +0100 | [diff] [blame] | 446 | test_sort.res \ |
Bram Moolenaar | 427f5b6 | 2019-06-09 13:43:51 +0200 | [diff] [blame] | 447 | test_sound.res \ |
Bram Moolenaar | 2b61852 | 2019-01-12 13:26:03 +0100 | [diff] [blame] | 448 | test_source.res \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 449 | test_spell.res \ |
Bram Moolenaar | aa970ab | 2020-08-02 16:10:39 +0200 | [diff] [blame] | 450 | test_spell_utf8.res \ |
Bram Moolenaar | 08cc374 | 2019-08-11 22:51:14 +0200 | [diff] [blame] | 451 | test_spellfile.res \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 452 | test_startup.res \ |
453 | test_stat.res \ | ||||
Bram Moolenaar | 842931c | 2020-01-28 21:53:28 +0100 | [diff] [blame] | 454 | test_statusline.res \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 455 | test_substitute.res \ |
Bram Moolenaar | 842931c | 2020-01-28 21:53:28 +0100 | [diff] [blame] | 456 | test_suspend.res \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 457 | test_swap.res \ |
Bram Moolenaar | 842931c | 2020-01-28 21:53:28 +0100 | [diff] [blame] | 458 | test_syn_attr.res \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 459 | test_syntax.res \ |
460 | test_system.res \ | ||||
461 | test_tab.res \ | ||||
Bram Moolenaar | 842931c | 2020-01-28 21:53:28 +0100 | [diff] [blame] | 462 | test_tabpage.res \ |
463 | test_tagjump.res \ | ||||
464 | test_taglist.res \ | ||||
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 465 | test_tcl.res \ |
Bram Moolenaar | 905dd90 | 2019-04-07 14:21:47 +0200 | [diff] [blame] | 466 | test_termcodes.res \ |
Bram Moolenaar | 4d784b2 | 2019-05-25 19:51:39 +0200 | [diff] [blame] | 467 | test_termencoding.res \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 468 | test_terminal.res \ |
Bram Moolenaar | 1112c0f | 2020-07-01 21:53:50 +0200 | [diff] [blame] | 469 | test_terminal2.res \ |
Bram Moolenaar | 18aa13d | 2020-07-11 13:09:36 +0200 | [diff] [blame] | 470 | test_terminal3.res \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 471 | test_terminal_fail.res \ |
472 | test_textformat.res \ | ||||
473 | test_textobjects.res \ | ||||
474 | test_textprop.res \ | ||||
Bram Moolenaar | 03af01f | 2019-12-25 13:59:51 +0100 | [diff] [blame] | 475 | test_timers.res \ |
Bram Moolenaar | 842931c | 2020-01-28 21:53:28 +0100 | [diff] [blame] | 476 | test_true_false.res \ |
Bram Moolenaar | 1f06823 | 2019-11-03 16:17:26 +0100 | [diff] [blame] | 477 | test_trycatch.res \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 478 | test_undo.res \ |
479 | test_user_func.res \ | ||||
480 | test_usercommands.res \ | ||||
481 | test_vartabs.res \ | ||||
Bram Moolenaar | ec5929d | 2020-04-07 20:53:39 +0200 | [diff] [blame] | 482 | $(TEST_VIM9_RES) \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 483 | test_viminfo.res \ |
484 | test_vimscript.res \ | ||||
Bram Moolenaar | 842931c | 2020-01-28 21:53:28 +0100 | [diff] [blame] | 485 | test_virtualedit.res \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 486 | test_visual.res \ |
487 | test_winbar.res \ | ||||
488 | test_winbuf_close.res \ | ||||
Bram Moolenaar | 842931c | 2020-01-28 21:53:28 +0100 | [diff] [blame] | 489 | test_window_cmd.res \ |
Bram Moolenaar | ec50401 | 2019-01-11 17:30:16 +0100 | [diff] [blame] | 490 | test_window_id.res \ |
491 | test_windows_home.res \ | ||||
492 | test_wordcount.res \ | ||||
493 | test_writefile.res \ | ||||
494 | test_xxd.res \ | ||||
495 | test_alot_latin.res \ | ||||
496 | test_alot_utf8.res \ | ||||
497 | test_alot.res |