Mercurial > vim
annotate src/testdir/Make_os2.mak @ 7246:a69b5e4beefd v7.4.931
commit https://github.com/vim/vim/commit/cfcd1ddd103129b309671cba5cff55e19a9908e4
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Nov 21 14:24:50 2015 +0100
patch 7.4.931
Problem: Test 94 fails on some systems.
Solution: Set 'encoding' to utf-8.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sat, 21 Nov 2015 14:30:04 +0100 |
parents | 64e30831fa42 |
children | 6ba7182fb7bd |
rev | line source |
---|---|
7 | 1 # |
2440
fc695854c33a
Correct comments in testdir makefiles. (John Beckett)
Bram Moolenaar <bram@vim.org>
parents:
2232
diff
changeset
|
2 # Makefile to run all tests for Vim, on OS/2 |
7 | 3 # |
4 # Requires a set of Unix tools: echo, diff, etc. | |
5 | |
6 VIMPROG = ../vim.exe | |
7 | |
8 # Omitted: | |
9 # test2 "\\tmp" doesn't work. | |
10 # test10 'errorformat' is different | |
11 # test11 requires sed | |
12 # test12 can't unlink a swap file | |
13 # test25 uses symbolic link | |
14 # test27 can't edit file with "*" in file name | |
15 # test52 only for Win32 | |
3452 | 16 # test85 no Lua interface |
3618 | 17 # test86, 87 no Python interface |
5116
6cabac58f26f
updated for version 7.3.1301
Bram Moolenaar <bram@vim.org>
parents:
5104
diff
changeset
|
18 # test97 \{ and \$ are not escaped characters. |
7 | 19 |
20 SCRIPTS = test1.out test3.out test4.out test5.out test6.out \ | |
21 test7.out test8.out test9.out \ | |
22 test13.out test14.out test15.out test17.out \ | |
23 test18.out test19.out test20.out test21.out test22.out \ | |
24 test23.out test24.out test26.out \ | |
25 test28.out test29.out test30.out test31.out test32.out \ | |
26 test33.out test34.out test35.out test36.out test37.out \ | |
27 test38.out test39.out test40.out test41.out test42.out \ | |
28 test43.out test44.out test45.out test46.out test47.out \ | |
268 | 29 test48.out test51.out test53.out test54.out test55.out \ |
764 | 30 test56.out test57.out test58.out test59.out test60.out \ |
1840 | 31 test61.out test62.out test63.out test64.out test65.out \ |
2232
2e6906bbc5f4
A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
2005
diff
changeset
|
32 test66.out test67.out test68.out test69.out test70.out \ |
2631 | 33 test71.out test72.out test73.out test74.out test75.out \ |
2925 | 34 test76.out test77.out test78.out test79.out test80.out \ |
4113 | 35 test81.out test82.out test83.out test84.out test88.out \ |
4274 | 36 test89.out test90.out test91.out test92.out test93.out \ |
5450 | 37 test94.out test95.out test96.out test98.out test99.out \ |
5690 | 38 test100.out test101.out test102.out test103.out test104.out \ |
5948 | 39 test105.out test106.out test107.out \ |
6522 | 40 test_argument_0count.out \ |
6398 | 41 test_argument_count.out \ |
6935 | 42 test_autocmd_option.out \ |
5848 | 43 test_autoformat_join.out \ |
6140 | 44 test_breakindent.out \ |
7092
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
7064
diff
changeset
|
45 test_cdo.out \ |
6096 | 46 test_changelist.out \ |
6991 | 47 test_charsearch.out \ |
6398 | 48 test_close_count.out \ |
6424 | 49 test_command_count.out \ |
7064
5fc5c5bf2233
commit https://github.com/vim/vim/commit/37a8de17d4dfd3d463960c38a204ce399c8e19d4
Christian Brabandt <cb@256bit.org>
parents:
6991
diff
changeset
|
50 test_comparators.out \ |
6712 | 51 test_erasebackword.out \ |
5796 | 52 test_eval.out \ |
6933 | 53 test_fixeol.out \ |
6868 | 54 test_increment.out \ |
6098 | 55 test_insertcount.out \ |
6777 | 56 test_listchars.out \ |
6079 | 57 test_listlbr.out \ |
6062 | 58 test_listlbr_utf8.out \ |
6299 | 59 test_mapping.out \ |
6616 | 60 test_marks.out \ |
6947 | 61 test_match_conceal.out \ |
6438 | 62 test_nested_function.out \ |
6140 | 63 test_options.out \ |
6847 | 64 test_perl.out \ |
6079 | 65 test_qf_title.out \ |
6847 | 66 test_ruby.out \ |
6903 | 67 test_search_mbyte.out \ |
6841 | 68 test_set.out \ |
6307 | 69 test_signs.out \ |
6675 | 70 test_textobjects.out \ |
6140 | 71 test_utf8.out |
7 | 72 |
6328 | 73 SCRIPTS_BENCH = bench_re_freeze.out |
74 | |
7 | 75 .SUFFIXES: .in .out |
76 | |
77 all: /tmp $(SCRIPTS) | |
78 @echo ALL DONE | |
79 | |
80 $(SCRIPTS): $(VIMPROG) | |
81 | |
6328 | 82 benchmark: $(SCRIPTS_BENCH) |
83 | |
7 | 84 clean: |
85 -rm -rf *.out Xdotest test.ok tiny.vim small.vim mbyte.vim viminfo | |
86 | |
87 # Make sure all .in and .out files are in DOS fileformat. | |
88 .in.out: | |
89 $(VIMPROG) -u NONE -s todos.vim $*.in | |
90 $(VIMPROG) -u NONE -s todos.vim $*.ok | |
91 copy $*.ok test.ok | |
92 $(VIMPROG) -u os2.vim --noplugin -s dotest.in $*.in | |
93 $(VIMPROG) -u NONE -s todos.vim test.out | |
94 diff test.out $*.ok | |
95 rename test.out $*.out | |
96 -rm -rf X* viminfo | |
97 -del test.ok | |
98 | |
99 # Create a directory for temp files | |
100 /tmp: | |
101 -mkdir /tmp | |
6328 | 102 |
103 bench_re_freeze.out: bench_re_freeze.vim | |
104 -del $*.failed test.ok benchmark.out | |
105 copy $*.ok test.ok | |
106 $(VIMPROG) -u os2.vim --noplugin -s dotest.in $*.in | |
107 type benchmark.out | |
108 |