blob: 6d1bddee99842c22a78b680847c539d1a643d0ce [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001
2First a simple test to check if the test script works.
3
4If Vim was not compiled with the +eval feature, the small.vim script will be
5set to copy the test.ok file to test.out, so that it looks like the test
6succeeded. Otherwise an empty small.vim is written. small.vim is sourced by
7tests that require the +eval feature or other features that are missing in the
8small version.
9
10If Vim was not compiled with the +windows feature, the tiny.vim script will be
11set like small.vim above. tiny.vim is sourced by tests that require the
12+windows feature or other features that are missing in the tiny version.
13
14If Vim was not compiled with the +multi_byte feature, the mbyte.vim script will be set like small.vim above. mbyte.vim is sourced by tests that require the
15+multi_byte feature.
16
17STARTTEST
18:" Write a single line to test.out to check if testing works at all.
19:%d
20athis is a test:w! test.out
21:" Create small.vim and tiny.vim empty, create mbyte.vim to skip the test.
220D:w! small.vim
23:w! tiny.vim
24ae! test.ok
25w! test.out
26qa!
27:w! mbyte.vim
28:" If +multi_byte feature supported, make mbyte.vim empty.
29:if has("multi_byte") | sp another | w! mbyte.vim | q | endif
30:" If +eval feature supported quit here, leaving tiny.vim and small.vim empty.
31:" Otherwise write small.vim to skip the test.
32:if 1 | q! | endif
33:w! small.vim
34:" If +windows feature not supported :sp will fail and tiny.vim will be
35:" written to skip the test.
36:sp another
37:wq! tiny.vim
38:qa!
39ENDTEST
40