blob: b407e6e22f112ec8762a43147b534c8cd4b782a5 [file] [log] [blame]
Bram Moolenaar7b6156f2015-12-28 16:01:26 +01001#
2# Common Makefile, defines the list of tests to run.
3#
4
Bram Moolenaar8be2fbb2017-02-23 19:32:47 +01005# Options for protecting the tests against undesirable interaction with the
6# environment
7NO_PLUGINS = --noplugin --not-a-term
8NO_INITS = -U NONE $(NO_PLUGINS)
Bram Moolenaard2227a02016-02-25 22:37:42 +01009
Bram Moolenaara6082432015-12-28 16:26:45 +010010# The first script creates small.vim.
11SCRIPTS_FIRST = \
12 test1.out
13
Bram Moolenaar7b6156f2015-12-28 16:01:26 +010014# Tests that run on all systems.
15SCRIPTS_ALL = \
Bram Moolenaar7b6156f2015-12-28 16:01:26 +010016 test3.out \
Bram Moolenaar7b6156f2015-12-28 16:01:26 +010017 test14.out \
18 test15.out \
Bram Moolenaar7b6156f2015-12-28 16:01:26 +010019 test29.out \
Bram Moolenaar7b6156f2015-12-28 16:01:26 +010020 test36.out \
21 test37.out \
Bram Moolenaar7b6156f2015-12-28 16:01:26 +010022 test39.out \
Bram Moolenaar7b6156f2015-12-28 16:01:26 +010023 test42.out \
Bram Moolenaar7b6156f2015-12-28 16:01:26 +010024 test44.out \
Bram Moolenaar7b6156f2015-12-28 16:01:26 +010025 test48.out \
Bram Moolenaar7b6156f2015-12-28 16:01:26 +010026 test64.out \
Bram Moolenaar7b6156f2015-12-28 16:01:26 +010027 test68.out \
28 test69.out \
29 test70.out \
Bram Moolenaar7b6156f2015-12-28 16:01:26 +010030 test73.out \
Bram Moolenaar7b6156f2015-12-28 16:01:26 +010031 test88.out \
Bram Moolenaar7b6156f2015-12-28 16:01:26 +010032 test94.out \
33 test95.out \
Bram Moolenaar7b6156f2015-12-28 16:01:26 +010034 test99.out \
Bram Moolenaarf1f60f82016-01-16 15:40:53 +010035 test108.out \
Bram Moolenaar7b6156f2015-12-28 16:01:26 +010036 test_close_count.out \
Bram Moolenaar7b6156f2015-12-28 16:01:26 +010037 test_erasebackword.out \
38 test_eval.out \
39 test_fixeol.out \
Bram Moolenaar7b6156f2015-12-28 16:01:26 +010040 test_listchars.out \
Bram Moolenaar19a16692016-09-01 22:19:47 +020041 test_wordcount.out
Bram Moolenaar7b6156f2015-12-28 16:01:26 +010042
43
44# Tests that run on most systems, but not on Amiga.
45SCRIPTS_MORE1 = \
46 test11.out \
Bram Moolenaar7b6156f2015-12-28 16:01:26 +010047 test52.out \
48 test85.out \
49 test86.out \
50 test87.out
51
52
53# Tests that run on most systems, but not on Amiga and DOS/Windows.
54SCRIPTS_MORE2 = \
Bram Moolenaar292eff02017-07-11 21:46:28 +020055 test49.out
Bram Moolenaar7b6156f2015-12-28 16:01:26 +010056
57
Bram Moolenaar7b6156f2015-12-28 16:01:26 +010058# Tests that run on most systems, but not on VMS
59SCRIPTS_MORE4 = \
60 test17.out \
61 test30.out \
Bram Moolenaar7b6156f2015-12-28 16:01:26 +010062 test59.out \
63 test72.out \
Bram Moolenaar7b6156f2015-12-28 16:01:26 +010064
65
66# Tests specifically for MS-Windows.
Bram Moolenaarda9888a2015-12-28 21:35:14 +010067SCRIPTS_WIN32 = test50.out
Bram Moolenaar7b6156f2015-12-28 16:01:26 +010068
69
70# Tests for the GUI.
Bram Moolenaar877e9572016-08-04 20:05:50 +020071SCRIPTS_GUI =
Bram Moolenaar7b6156f2015-12-28 16:01:26 +010072
73
Bram Moolenaar430dc5d2017-11-02 21:04:47 +010074# Tests using runtest.vim
Bram Moolenaar4d585022016-04-14 19:50:22 +020075# Keep test_alot*.res as the last one, sort the others.
Bram Moolenaarb5e83772017-02-27 21:48:26 +010076NEW_TESTS = test_arabic.res \
77 test_arglist.res \
Bram Moolenaar72defda2016-01-17 18:04:33 +010078 test_assert.res \
Bram Moolenaar53f16732016-09-07 20:46:39 +020079 test_autochdir.res \
Bram Moolenaar4520d442017-03-19 16:09:46 +010080 test_autocmd.res \
Bram Moolenaarce2ec0a2016-03-15 17:10:19 +010081 test_backspace_opt.res \
Bram Moolenaar6c896862016-11-17 19:46:51 +010082 test_breakindent.res \
Bram Moolenaarb5ae48e2016-08-12 22:23:25 +020083 test_bufwintabinfo.res \
Bram Moolenaar7b6156f2015-12-28 16:01:26 +010084 test_cdo.res \
Bram Moolenaard7ece102016-02-02 23:23:02 +010085 test_channel.res \
Bram Moolenaarcd055da2016-09-02 19:50:48 +020086 test_charsearch.res \
Bram Moolenaar6b643942017-03-05 19:44:06 +010087 test_cindent.res \
Bram Moolenaar15bf76d2017-03-18 16:18:37 +010088 test_clientserver.res \
Bram Moolenaarae3150e2016-06-11 23:22:36 +020089 test_cmdline.res \
Bram Moolenaar9b73c4a2017-01-13 22:30:08 +010090 test_command_count.res \
Bram Moolenaar680e0152016-09-25 20:54:11 +020091 test_crypt.res \
Bram Moolenaar6d20e172016-07-13 22:44:12 +020092 test_cscope.res \
Bram Moolenaar4a137b42017-08-04 22:37:11 +020093 test_curswant.res \
Bram Moolenaar42093c02016-07-30 16:16:54 +020094 test_diffmode.res \
Bram Moolenaardfd63e32016-07-21 10:11:03 +020095 test_digraph.res \
Bram Moolenaar62706602016-12-09 19:28:48 +010096 test_display.res \
Bram Moolenaareb992cb2017-03-09 18:20:16 +010097 test_edit.res \
Bram Moolenaar4a6fcf82017-10-12 21:29:22 +020098 test_exists.res \
Bram Moolenaaree2615a2016-07-02 18:25:34 +020099 test_farsi.res \
Bram Moolenaar4a137b42017-08-04 22:37:11 +0200100 test_file_size.res \
Bram Moolenaarcd055da2016-09-02 19:50:48 +0200101 test_fnameescape.res \
Bram Moolenaarded27822017-01-02 14:27:34 +0100102 test_fold.res \
Bram Moolenaar75373f32017-08-07 22:02:30 +0200103 test_getvar.res \
Bram Moolenaar53f16732016-09-07 20:46:39 +0200104 test_gf.res \
Bram Moolenaar6835dc62016-07-24 17:33:05 +0200105 test_gn.res \
Bram Moolenaar877e9572016-08-04 20:05:50 +0200106 test_gui.res \
Bram Moolenaar8be2fbb2017-02-23 19:32:47 +0100107 test_gui_init.res \
Bram Moolenaarb5690792016-01-14 22:10:41 +0100108 test_hardcopy.res \
Bram Moolenaar343b8c02017-02-17 12:04:56 +0100109 test_help.res \
Bram Moolenaar2256c992016-11-15 21:17:07 +0100110 test_hide.res \
Bram Moolenaar75373f32017-08-07 22:02:30 +0200111 test_highlight.res \
Bram Moolenaar119d4692016-03-05 21:21:24 +0100112 test_history.res \
Bram Moolenaar53f16732016-09-07 20:46:39 +0200113 test_hlsearch.res \
Bram Moolenaar45091952016-01-09 21:08:35 +0100114 test_increment.res \
Bram Moolenaard388d2a2016-06-26 16:24:20 +0200115 test_increment_dbcs.res \
Bram Moolenaar15993ce2017-10-26 20:21:44 +0200116 test_ins_complete.res \
Bram Moolenaar46c4d4a2016-08-05 19:31:57 +0200117 test_job_fails.res \
Bram Moolenaar1c391022016-02-28 18:04:00 +0100118 test_json.res \
Bram Moolenaar25281632016-01-21 23:32:32 +0100119 test_langmap.res \
Bram Moolenaar4a137b42017-08-04 22:37:11 +0200120 test_let.res \
121 test_lineending.res \
Bram Moolenaarfb094e12017-11-05 20:59:28 +0100122 test_listdict.res \
Bram Moolenaar544d3bc2017-02-05 21:14:50 +0100123 test_listlbr.res \
124 test_listlbr_utf8.res \
Bram Moolenaard58f03b2017-01-29 22:48:45 +0100125 test_lua.res \
Bram Moolenaar2c7292d2017-03-05 17:43:31 +0100126 test_makeencoding.res \
Bram Moolenaarddf8d1c2016-06-20 11:22:54 +0200127 test_man.res \
Bram Moolenaar19a16692016-09-01 22:19:47 +0200128 test_marks.res \
Bram Moolenaar4d585022016-04-14 19:50:22 +0200129 test_matchadd_conceal.res \
Bram Moolenaareca626f2016-12-01 18:47:38 +0100130 test_mksession.res \
131 test_mksession_utf8.res \
Bram Moolenaar19a16692016-09-01 22:19:47 +0200132 test_nested_function.res \
Bram Moolenaar321efdd2016-07-15 17:09:11 +0200133 test_netbeans.res \
Bram Moolenaar87bc3f72016-09-03 17:33:54 +0200134 test_normal.res \
Bram Moolenaardc9a0812017-02-23 18:46:50 +0100135 test_number.res \
Bram Moolenaarbb962262017-03-08 00:01:35 +0100136 test_options.res \
Bram Moolenaarf3654822016-03-04 22:12:23 +0100137 test_packadd.res \
Bram Moolenaard58f03b2017-01-29 22:48:45 +0100138 test_paste.res \
Bram Moolenaarb20e3342016-01-18 23:29:01 +0100139 test_perl.res \
Bram Moolenaarc31f9ae2017-07-23 22:02:02 +0200140 test_preview.res \
Bram Moolenaar296b1f22017-01-15 15:22:33 +0100141 test_profile.res \
Bram Moolenaara58883b2017-01-29 21:31:09 +0100142 test_python2.res \
143 test_python3.res \
Bram Moolenaarf42dd3c2017-01-28 16:06:38 +0100144 test_pyx2.res \
145 test_pyx3.res \
Bram Moolenaarda59dd52016-01-05 21:59:58 +0100146 test_quickfix.res \
Bram Moolenaar7dd48502017-03-19 20:04:22 +0100147 test_quotestar.res \
Bram Moolenaar88227442017-01-17 22:16:00 +0100148 test_retab.res \
Bram Moolenaare45deb72017-07-16 17:56:16 +0200149 test_registers.res \
Bram Moolenaar85babd62016-06-21 22:59:28 +0200150 test_ruby.res \
Bram Moolenaar4a137b42017-08-04 22:37:11 +0200151 test_scrollbind.res \
Bram Moolenaar4d6f32c2016-08-26 19:13:46 +0200152 test_search.res \
Bram Moolenaar09de1752016-08-08 22:26:48 +0200153 test_signs.res \
Bram Moolenaar53f16732016-09-07 20:46:39 +0200154 test_smartindent.res \
Bram Moolenaard3f78dc2017-02-25 14:21:10 +0100155 test_spell.res \
Bram Moolenaarb9a46fe2016-07-29 18:13:42 +0200156 test_startup.res \
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200157 test_startup_utf8.res \
Bram Moolenaar8767f522016-07-01 17:17:39 +0200158 test_stat.res \
Bram Moolenaarcd055da2016-09-02 19:50:48 +0200159 test_substitute.res \
Bram Moolenaar430dc5d2017-11-02 21:04:47 +0100160 test_swap.res \
Bram Moolenaarb8060fe2016-01-19 22:29:28 +0100161 test_syntax.res \
Bram Moolenaar12c44922017-01-08 13:26:03 +0100162 test_system.res \
Bram Moolenaar15993ce2017-10-26 20:21:44 +0200163 test_tab.res \
Bram Moolenaara4c906a2017-01-29 23:26:37 +0100164 test_tcl.res \
Bram Moolenaarc6df10e2017-07-29 20:15:08 +0200165 test_terminal.res \
Bram Moolenaar5b5adf52017-09-09 18:16:43 +0200166 test_terminal_fail.res \
Bram Moolenaar00b24be2016-07-23 22:04:47 +0200167 test_textobjects.res \
Bram Moolenaar170b10b2016-07-29 16:15:27 +0200168 test_undo.res \
Bram Moolenaar63a60de2016-06-04 22:08:55 +0200169 test_usercommands.res \
Bram Moolenaar53f0c962017-10-22 14:23:59 +0200170 test_user_func.res \
Bram Moolenaarb20e3342016-01-18 23:29:01 +0100171 test_viminfo.res \
Bram Moolenaarb544f3c2017-02-23 19:03:28 +0100172 test_vimscript.res \
Bram Moolenaar20b4f462016-03-05 17:25:39 +0100173 test_visual.res \
Bram Moolenaar1b9645d2017-09-17 23:03:31 +0200174 test_winbar.res \
Bram Moolenaar4a6fcf82017-10-12 21:29:22 +0200175 test_winbuf_close.res \
Bram Moolenaar86edef62016-03-13 18:07:30 +0100176 test_window_id.res \
Bram Moolenaar1b9645d2017-09-17 23:03:31 +0200177 test_windows_home.res \
Bram Moolenaar19a16692016-09-01 22:19:47 +0200178 test_writefile.res \
Bram Moolenaar22e42152016-04-03 14:02:02 +0200179 test_alot_latin.res \
180 test_alot_utf8.res \
Bram Moolenaar1b9645d2017-09-17 23:03:31 +0200181 test_alot.res
Bram Moolenaar7b6156f2015-12-28 16:01:26 +0100182
183
184# Explicit dependencies.
185test49.out: test49.vim
186
Bram Moolenaare8512d72017-03-07 22:33:32 +0100187test_options.res test_alot.res: opt_test.vim