Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1 | # |
Bram Moolenaar | 6839272 | 2010-07-30 22:04:17 +0200 | [diff] [blame] | 2 | # Makefile to run all tests for Vim, on Amiga |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 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 |
Bram Moolenaar | 98411e5 | 2012-04-05 16:56:52 +0200 | [diff] [blame] | 16 | # test85 no Lua interface |
Bram Moolenaar | db91395 | 2012-06-29 12:54:53 +0200 | [diff] [blame] | 17 | # test86, 87 no Python interface |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 18 | |
| 19 | SCRIPTS = test1.out test3.out test4.out test5.out test6.out \ |
| 20 | test7.out test8.out test9.out \ |
| 21 | test13.out test14.out test15.out test17.out \ |
| 22 | test18.out test19.out test20.out test21.out test22.out \ |
| 23 | test23.out test24.out test26.out \ |
| 24 | test28.out test29.out test30.out test31.out test32.out \ |
| 25 | test33.out test34.out test35.out test36.out test37.out \ |
| 26 | test38.out test39.out test40.out test41.out test42.out \ |
| 27 | test43.out test44.out test45.out test46.out test47.out \ |
Bram Moolenaar | a7fc010 | 2005-05-18 22:17:12 +0000 | [diff] [blame] | 28 | test48.out test51.out test53.out test54.out test55.out \ |
Bram Moolenaar | 7d47b6e | 2006-03-15 22:59:18 +0000 | [diff] [blame] | 29 | test56.out test57.out test58.out test59.out test60.out \ |
Bram Moolenaar | dd31030 | 2009-03-11 15:37:53 +0000 | [diff] [blame] | 30 | test61.out test62.out test63.out test64.out test65.out \ |
Bram Moolenaar | 644fdff | 2010-05-30 13:26:21 +0200 | [diff] [blame] | 31 | test66.out test67.out test68.out test69.out test70.out \ |
Bram Moolenaar | 37dd018 | 2010-11-10 16:54:20 +0100 | [diff] [blame] | 32 | test71.out test72.out test73.out test74.out test75.out \ |
Bram Moolenaar | 8b3e033 | 2011-06-26 05:36:34 +0200 | [diff] [blame] | 33 | test76.out test77.out test78.out test79.out test80.out \ |
Bram Moolenaar | f4e5e86 | 2013-02-13 15:44:26 +0100 | [diff] [blame] | 34 | test81.out test82.out test83.out test84.out test88.out \ |
Bram Moolenaar | e3e6e57 | 2013-04-12 13:45:02 +0200 | [diff] [blame] | 35 | test89.out test90.out test91.out test92.out test93.out \ |
Bram Moolenaar | e6a2fa6 | 2013-09-19 17:00:20 +0200 | [diff] [blame] | 36 | test94.out test95.out test96.out test97.out test98.out \ |
Bram Moolenaar | 4f943c0 | 2014-02-05 22:26:05 +0100 | [diff] [blame] | 37 | test99.out test100.out test101.out test102.out test103.out \ |
Bram Moolenaar | efa304d | 2014-04-01 14:08:28 +0200 | [diff] [blame] | 38 | test104.out test105.out test106.out \ |
Bram Moolenaar | b7cb42b | 2014-04-02 19:55:10 +0200 | [diff] [blame^] | 39 | test_eval.out \ |
Bram Moolenaar | efa304d | 2014-04-01 14:08:28 +0200 | [diff] [blame] | 40 | test_options.out |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 41 | |
| 42 | .SUFFIXES: .in .out |
| 43 | |
| 44 | nongui: /tmp $(SCRIPTS) |
| 45 | csh -c echo ALL DONE |
| 46 | |
| 47 | clean: |
| 48 | csh -c \rm -rf *.out /tmp/* Xdotest small.vim tiny.vim mbyte.vim test.ok viminfo |
| 49 | |
| 50 | .in.out: |
| 51 | copy $*.ok test.ok |
| 52 | $(VIMPROG) -u amiga.vim -U NONE --noplugin -s dotest.in $*.in |
| 53 | diff test.out $*.ok |
| 54 | rename test.out $*.out |
| 55 | -delete X#? ALL QUIET |
| 56 | -delete test.ok |
| 57 | |
| 58 | # Create a directory for temp files |
| 59 | /tmp: |
| 60 | makedir /tmp |
| 61 | |
| 62 | # Manx requires all dependencies... |
| 63 | test1.out: test1.in |
| 64 | test2.out: test2.in |
| 65 | test3.out: test3.in |
| 66 | test4.out: test4.in |
| 67 | test5.out: test5.in |
| 68 | test6.out: test6.in |
| 69 | test7.out: test7.in |
| 70 | test8.out: test8.in |
| 71 | test9.out: test9.in |
| 72 | test10.out: test10.in |
| 73 | test11.out: test11.in |
| 74 | test12.out: test12.in |
| 75 | test13.out: test13.in |
| 76 | test14.out: test14.in |
| 77 | test15.out: test15.in |
| 78 | test16.out: test16.in |
| 79 | test17.out: test17.in |
| 80 | test18.out: test18.in |
| 81 | test19.out: test19.in |
| 82 | test20.out: test20.in |
| 83 | test21.out: test21.in |
| 84 | test22.out: test22.in |
| 85 | test23.out: test23.in |
| 86 | test24.out: test24.in |
| 87 | test25.out: test25.in |
| 88 | test26.out: test26.in |
| 89 | test27.out: test27.in |
| 90 | test28.out: test28.in |
| 91 | test29.out: test29.in |
| 92 | test30.out: test30.in |
| 93 | test31.out: test31.in |
| 94 | test32.out: test32.in |
| 95 | test33.out: test33.in |
| 96 | test34.out: test34.in |
| 97 | test35.out: test35.in |
| 98 | test36.out: test36.in |
| 99 | test37.out: test37.in |
| 100 | test38.out: test38.in |
| 101 | test39.out: test39.in |
| 102 | test40.out: test40.in |
| 103 | test41.out: test41.in |
| 104 | test42.out: test42.in |
| 105 | test43.out: test43.in |
| 106 | test44.out: test44.in |
| 107 | test45.out: test45.in |
| 108 | test46.out: test46.in |
| 109 | test47.out: test47.in |
| 110 | test48.out: test48.in |
| 111 | test51.out: test51.in |
Bram Moolenaar | cfbc5ee | 2004-07-02 15:38:35 +0000 | [diff] [blame] | 112 | test53.out: test53.in |
Bram Moolenaar | b5bf5b8 | 2004-12-24 14:35:23 +0000 | [diff] [blame] | 113 | test54.out: test54.in |
Bram Moolenaar | 383f9bc | 2005-01-19 22:18:32 +0000 | [diff] [blame] | 114 | test55.out: test55.in |
Bram Moolenaar | a7fc010 | 2005-05-18 22:17:12 +0000 | [diff] [blame] | 115 | test56.out: test56.in |
Bram Moolenaar | 5c06f8b | 2005-05-31 22:14:58 +0000 | [diff] [blame] | 116 | test57.out: test57.in |
Bram Moolenaar | 0dc065e | 2005-07-04 22:49:24 +0000 | [diff] [blame] | 117 | test58.out: test58.in |
Bram Moolenaar | 53180ce | 2005-07-05 21:48:14 +0000 | [diff] [blame] | 118 | test59.out: test59.in |
Bram Moolenaar | 0ce33f3 | 2005-12-23 22:16:03 +0000 | [diff] [blame] | 119 | test60.out: test60.in |
Bram Moolenaar | 7d47b6e | 2006-03-15 22:59:18 +0000 | [diff] [blame] | 120 | test61.out: test61.in |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 121 | test62.out: test62.in |
Bram Moolenaar | bf96fb4 | 2007-07-26 21:11:52 +0000 | [diff] [blame] | 122 | test63.out: test63.in |
Bram Moolenaar | 9c03978 | 2007-08-14 15:55:42 +0000 | [diff] [blame] | 123 | test64.out: test64.in |
Bram Moolenaar | 446cb83 | 2008-06-24 21:56:24 +0000 | [diff] [blame] | 124 | test65.out: test65.in |
Bram Moolenaar | dd31030 | 2009-03-11 15:37:53 +0000 | [diff] [blame] | 125 | test66.out: test66.in |
Bram Moolenaar | 2db24dc | 2009-09-18 12:59:26 +0000 | [diff] [blame] | 126 | test67.out: test67.in |
Bram Moolenaar | f11021b | 2009-11-17 16:57:14 +0000 | [diff] [blame] | 127 | test68.out: test68.in |
| 128 | test69.out: test69.in |
Bram Moolenaar | 644fdff | 2010-05-30 13:26:21 +0200 | [diff] [blame] | 129 | test70.out: test70.in |
| 130 | test71.out: test71.in |
| 131 | test72.out: test72.in |
Bram Moolenaar | 80a7dcf | 2010-08-04 17:07:20 +0200 | [diff] [blame] | 132 | test73.out: test73.in |
Bram Moolenaar | 680eeca | 2010-10-20 17:44:42 +0200 | [diff] [blame] | 133 | test74.out: test74.in |
Bram Moolenaar | 16a6165 | 2010-10-27 18:36:36 +0200 | [diff] [blame] | 134 | test75.out: test75.in |
Bram Moolenaar | 37dd018 | 2010-11-10 16:54:20 +0100 | [diff] [blame] | 135 | test76.out: test76.in |
Bram Moolenaar | b05b10a | 2011-03-22 18:10:45 +0100 | [diff] [blame] | 136 | test77.out: test77.in |
Bram Moolenaar | 986a003 | 2011-06-13 01:07:27 +0200 | [diff] [blame] | 137 | test78.out: test78.in |
Bram Moolenaar | 978287b | 2011-06-19 04:32:15 +0200 | [diff] [blame] | 138 | test79.out: test79.in |
| 139 | test80.out: test80.in |
Bram Moolenaar | 8b3e033 | 2011-06-26 05:36:34 +0200 | [diff] [blame] | 140 | test81.out: test81.in |
Bram Moolenaar | 35ee452 | 2011-07-15 21:16:59 +0200 | [diff] [blame] | 141 | test82.out: test82.in |
Bram Moolenaar | e06461a | 2011-10-12 19:53:52 +0200 | [diff] [blame] | 142 | test83.out: test83.in |
Bram Moolenaar | 913077c | 2012-03-28 19:59:04 +0200 | [diff] [blame] | 143 | test84.out: test84.in |
Bram Moolenaar | 9750bb1 | 2012-12-05 16:10:42 +0100 | [diff] [blame] | 144 | test88.out: test88.in |
Bram Moolenaar | f4e5e86 | 2013-02-13 15:44:26 +0100 | [diff] [blame] | 145 | test89.out: test89.in |
Bram Moolenaar | af9aeb9 | 2013-02-13 17:35:04 +0100 | [diff] [blame] | 146 | test90.out: test90.in |
Bram Moolenaar | 63dbda1 | 2013-02-20 21:12:10 +0100 | [diff] [blame] | 147 | test91.out: test91.in |
Bram Moolenaar | fdf447b | 2013-02-26 17:21:29 +0100 | [diff] [blame] | 148 | test92.out: test92.in |
| 149 | test93.out: test93.in |
Bram Moolenaar | e3e6e57 | 2013-04-12 13:45:02 +0200 | [diff] [blame] | 150 | test94.out: test94.in |
Bram Moolenaar | fbc0d2e | 2013-05-19 19:40:29 +0200 | [diff] [blame] | 151 | test95.out: test95.in |
Bram Moolenaar | f5901aa | 2013-07-01 21:25:25 +0200 | [diff] [blame] | 152 | test96.out: test96.in |
Bram Moolenaar | f4e1143 | 2013-07-03 16:53:03 +0200 | [diff] [blame] | 153 | test97.out: test97.in |
Bram Moolenaar | 04c5c9e | 2013-07-09 13:44:59 +0200 | [diff] [blame] | 154 | test98.out: test98.in |
Bram Moolenaar | e6a2fa6 | 2013-09-19 17:00:20 +0200 | [diff] [blame] | 155 | test99.out: test99.in |
Bram Moolenaar | c1c023e | 2013-11-07 03:26:06 +0100 | [diff] [blame] | 156 | test100.out: test100.in |
Bram Moolenaar | 8050efa | 2013-11-08 04:30:20 +0100 | [diff] [blame] | 157 | test101.out: test101.in |
Bram Moolenaar | 8f5610d | 2013-11-12 05:28:26 +0100 | [diff] [blame] | 158 | test102.out: test102.in |
Bram Moolenaar | d07c6e1 | 2013-11-21 14:21:40 +0100 | [diff] [blame] | 159 | test103.out: test103.in |
Bram Moolenaar | 4f943c0 | 2014-02-05 22:26:05 +0100 | [diff] [blame] | 160 | test104.out: test104.in |
Bram Moolenaar | 26df092 | 2014-02-23 23:39:13 +0100 | [diff] [blame] | 161 | test105.out: test105.in |
Bram Moolenaar | 8eded09 | 2014-03-12 19:41:55 +0100 | [diff] [blame] | 162 | test106.out: test106.in |
Bram Moolenaar | b7cb42b | 2014-04-02 19:55:10 +0200 | [diff] [blame^] | 163 | test_eval.out: test_eval.in |
Bram Moolenaar | efa304d | 2014-04-01 14:08:28 +0200 | [diff] [blame] | 164 | test_options.out: test_options.in |