Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1 | # |
| 2 | # Makefile to run al tests for Vim, on Amiga |
| 3 | # |
| 4 | # Requires "rm", "csh" and "diff"! |
| 5 | |
| 6 | VIMPROG = /vim |
| 7 | |
| 8 | # These tests don't work (yet): |
| 9 | # test2 "\\tmp" doesn't work |
| 10 | # test10 'errorformat' is different |
| 11 | # test11 "cat" doesn't work properly |
| 12 | # test12 can't unlink a swap file |
| 13 | # test25 uses symbolic link |
| 14 | # test27 can't edit file with "*" |
| 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 | a7fc010 | 2005-05-18 22:17:12 +0000 | [diff] [blame] | 26 | test48.out test51.out test53.out test54.out test55.out \ |
Bram Moolenaar | 7d47b6e | 2006-03-15 22:59:18 +0000 | [diff] [blame] | 27 | test56.out test57.out test58.out test59.out test60.out \ |
Bram Moolenaar | dd31030 | 2009-03-11 15:37:53 +0000 | [diff] [blame] | 28 | test61.out test62.out test63.out test64.out test65.out \ |
Bram Moolenaar | 644fdff | 2010-05-30 13:26:21 +0200 | [diff] [blame] | 29 | test66.out test67.out test68.out test69.out test70.out \ |
| 30 | test71.out test72.out |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 31 | |
| 32 | .SUFFIXES: .in .out |
| 33 | |
| 34 | nongui: /tmp $(SCRIPTS) |
| 35 | csh -c echo ALL DONE |
| 36 | |
| 37 | clean: |
| 38 | csh -c \rm -rf *.out /tmp/* Xdotest small.vim tiny.vim mbyte.vim test.ok viminfo |
| 39 | |
| 40 | .in.out: |
| 41 | copy $*.ok test.ok |
| 42 | $(VIMPROG) -u amiga.vim -U NONE --noplugin -s dotest.in $*.in |
| 43 | diff test.out $*.ok |
| 44 | rename test.out $*.out |
| 45 | -delete X#? ALL QUIET |
| 46 | -delete test.ok |
| 47 | |
| 48 | # Create a directory for temp files |
| 49 | /tmp: |
| 50 | makedir /tmp |
| 51 | |
| 52 | # Manx requires all dependencies... |
| 53 | test1.out: test1.in |
| 54 | test2.out: test2.in |
| 55 | test3.out: test3.in |
| 56 | test4.out: test4.in |
| 57 | test5.out: test5.in |
| 58 | test6.out: test6.in |
| 59 | test7.out: test7.in |
| 60 | test8.out: test8.in |
| 61 | test9.out: test9.in |
| 62 | test10.out: test10.in |
| 63 | test11.out: test11.in |
| 64 | test12.out: test12.in |
| 65 | test13.out: test13.in |
| 66 | test14.out: test14.in |
| 67 | test15.out: test15.in |
| 68 | test16.out: test16.in |
| 69 | test17.out: test17.in |
| 70 | test18.out: test18.in |
| 71 | test19.out: test19.in |
| 72 | test20.out: test20.in |
| 73 | test21.out: test21.in |
| 74 | test22.out: test22.in |
| 75 | test23.out: test23.in |
| 76 | test24.out: test24.in |
| 77 | test25.out: test25.in |
| 78 | test26.out: test26.in |
| 79 | test27.out: test27.in |
| 80 | test28.out: test28.in |
| 81 | test29.out: test29.in |
| 82 | test30.out: test30.in |
| 83 | test31.out: test31.in |
| 84 | test32.out: test32.in |
| 85 | test33.out: test33.in |
| 86 | test34.out: test34.in |
| 87 | test35.out: test35.in |
| 88 | test36.out: test36.in |
| 89 | test37.out: test37.in |
| 90 | test38.out: test38.in |
| 91 | test39.out: test39.in |
| 92 | test40.out: test40.in |
| 93 | test41.out: test41.in |
| 94 | test42.out: test42.in |
| 95 | test43.out: test43.in |
| 96 | test44.out: test44.in |
| 97 | test45.out: test45.in |
| 98 | test46.out: test46.in |
| 99 | test47.out: test47.in |
| 100 | test48.out: test48.in |
| 101 | test51.out: test51.in |
Bram Moolenaar | cfbc5ee | 2004-07-02 15:38:35 +0000 | [diff] [blame] | 102 | test53.out: test53.in |
Bram Moolenaar | b5bf5b8 | 2004-12-24 14:35:23 +0000 | [diff] [blame] | 103 | test54.out: test54.in |
Bram Moolenaar | 383f9bc | 2005-01-19 22:18:32 +0000 | [diff] [blame] | 104 | test55.out: test55.in |
Bram Moolenaar | a7fc010 | 2005-05-18 22:17:12 +0000 | [diff] [blame] | 105 | test56.out: test56.in |
Bram Moolenaar | 5c06f8b | 2005-05-31 22:14:58 +0000 | [diff] [blame] | 106 | test57.out: test57.in |
Bram Moolenaar | 0dc065e | 2005-07-04 22:49:24 +0000 | [diff] [blame] | 107 | test58.out: test58.in |
Bram Moolenaar | 53180ce | 2005-07-05 21:48:14 +0000 | [diff] [blame] | 108 | test59.out: test59.in |
Bram Moolenaar | 0ce33f3 | 2005-12-23 22:16:03 +0000 | [diff] [blame] | 109 | test60.out: test60.in |
Bram Moolenaar | 7d47b6e | 2006-03-15 22:59:18 +0000 | [diff] [blame] | 110 | test61.out: test61.in |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 111 | test62.out: test62.in |
Bram Moolenaar | bf96fb4 | 2007-07-26 21:11:52 +0000 | [diff] [blame] | 112 | test63.out: test63.in |
Bram Moolenaar | 9c03978 | 2007-08-14 15:55:42 +0000 | [diff] [blame] | 113 | test64.out: test64.in |
Bram Moolenaar | 446cb83 | 2008-06-24 21:56:24 +0000 | [diff] [blame] | 114 | test65.out: test65.in |
Bram Moolenaar | dd31030 | 2009-03-11 15:37:53 +0000 | [diff] [blame] | 115 | test66.out: test66.in |
Bram Moolenaar | 2db24dc | 2009-09-18 12:59:26 +0000 | [diff] [blame] | 116 | test67.out: test67.in |
Bram Moolenaar | f11021b | 2009-11-17 16:57:14 +0000 | [diff] [blame] | 117 | test68.out: test68.in |
| 118 | test69.out: test69.in |
Bram Moolenaar | 644fdff | 2010-05-30 13:26:21 +0200 | [diff] [blame] | 119 | test70.out: test70.in |
| 120 | test71.out: test71.in |
| 121 | test72.out: test72.in |