Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1 | # |
| 2 | # Makefile to run al tests for Vim, on OS/2 |
| 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 |
| 16 | |
| 17 | SCRIPTS = test1.out test3.out test4.out test5.out test6.out \ |
| 18 | test7.out test8.out test9.out \ |
| 19 | test13.out test14.out test15.out test17.out \ |
| 20 | test18.out test19.out test20.out test21.out test22.out \ |
| 21 | test23.out test24.out test26.out \ |
| 22 | test28.out test29.out test30.out test31.out test32.out \ |
| 23 | test33.out test34.out test35.out test36.out test37.out \ |
| 24 | test38.out test39.out test40.out test41.out test42.out \ |
| 25 | test43.out test44.out test45.out test46.out test47.out \ |
Bram Moolenaar | 383f9bc | 2005-01-19 22:18:32 +0000 | [diff] [blame^] | 26 | test48.out test51.out test53.out test54.out test55.out |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 27 | |
| 28 | .SUFFIXES: .in .out |
| 29 | |
| 30 | all: /tmp $(SCRIPTS) |
| 31 | @echo ALL DONE |
| 32 | |
| 33 | $(SCRIPTS): $(VIMPROG) |
| 34 | |
| 35 | clean: |
| 36 | -rm -rf *.out Xdotest test.ok tiny.vim small.vim mbyte.vim viminfo |
| 37 | |
| 38 | # Make sure all .in and .out files are in DOS fileformat. |
| 39 | .in.out: |
| 40 | $(VIMPROG) -u NONE -s todos.vim $*.in |
| 41 | $(VIMPROG) -u NONE -s todos.vim $*.ok |
| 42 | copy $*.ok test.ok |
| 43 | $(VIMPROG) -u os2.vim --noplugin -s dotest.in $*.in |
| 44 | $(VIMPROG) -u NONE -s todos.vim test.out |
| 45 | diff test.out $*.ok |
| 46 | rename test.out $*.out |
| 47 | -rm -rf X* viminfo |
| 48 | -del test.ok |
| 49 | |
| 50 | # Create a directory for temp files |
| 51 | /tmp: |
| 52 | -mkdir /tmp |