Mercurial > vim
annotate src/testdir/Make_amiga.mak @ 13076:7c071a3f7f8e v8.0.1413
patch 8.0.1413: accessing freed memory in :cbuffer
commit https://github.com/vim/vim/commit/aaf6e43b7a99cedb89d73ba749a46f7a0f16bbb6
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Dec 19 16:41:14 2017 +0100
patch 8.0.1413: accessing freed memory in :cbuffer
Problem: Accessing freed memory in :cbuffer.
Solution: Get quickfix list after executing autocmds. (closes https://github.com/vim/vim/issues/2470)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Tue, 19 Dec 2017 16:45:06 +0100 |
parents | 0b6c09957b43 |
children | 2e95ea9afa1e |
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 Amiga |
7 | 3 # |
4 # Requires "rm", "csh" and "diff"! | |
5 | |
6 VIMPROG = /vim | |
7 | |
7366
eec1dc8ca160
commit https://github.com/vim/vim/commit/40bbceee2213a6fa8fdc1d3f3920d61fb5370803
Christian Brabandt <cb@256bit.org>
parents:
7356
diff
changeset
|
8 default: nongui |
eec1dc8ca160
commit https://github.com/vim/vim/commit/40bbceee2213a6fa8fdc1d3f3920d61fb5370803
Christian Brabandt <cb@256bit.org>
parents:
7356
diff
changeset
|
9 |
7354
81dc9e30aad6
commit https://github.com/vim/vim/commit/7b6156f4cd4027b664a916ba546e9b05d4c49e11
Christian Brabandt <cb@256bit.org>
parents:
7350
diff
changeset
|
10 include Make_all.mak |
81dc9e30aad6
commit https://github.com/vim/vim/commit/7b6156f4cd4027b664a916ba546e9b05d4c49e11
Christian Brabandt <cb@256bit.org>
parents:
7350
diff
changeset
|
11 |
7 | 12 # These tests don't work (yet): |
13 # test2 "\\tmp" doesn't work | |
14 # test10 'errorformat' is different | |
15 # test11 "cat" doesn't work properly | |
16 # test52 only for Win32 | |
3452 | 17 # test85 no Lua interface |
3618 | 18 # test86, 87 no Python interface |
7 | 19 |
12662
15f0f9f16cd9
patch 8.0.1209: still too many old style tests
Christian Brabandt <cb@256bit.org>
parents:
8322
diff
changeset
|
20 SCRIPTS = $(SCRIPTS_ALL) $(SCRIPTS_MORE4) |
7 | 21 |
7356
f0eb9aa9eb32
commit https://github.com/vim/vim/commit/a60824308cd9bc192c5d38fc16cccfcf652b40f6
Christian Brabandt <cb@256bit.org>
parents:
7354
diff
changeset
|
22 # Must run test1 first to create small.vim. |
f0eb9aa9eb32
commit https://github.com/vim/vim/commit/a60824308cd9bc192c5d38fc16cccfcf652b40f6
Christian Brabandt <cb@256bit.org>
parents:
7354
diff
changeset
|
23 $(SCRIPTS) $(SCRIPTS_GUI) $(NEW_TESTS): $(SCRIPTS_FIRST) |
f0eb9aa9eb32
commit https://github.com/vim/vim/commit/a60824308cd9bc192c5d38fc16cccfcf652b40f6
Christian Brabandt <cb@256bit.org>
parents:
7354
diff
changeset
|
24 |
7 | 25 .SUFFIXES: .in .out |
26 | |
7356
f0eb9aa9eb32
commit https://github.com/vim/vim/commit/a60824308cd9bc192c5d38fc16cccfcf652b40f6
Christian Brabandt <cb@256bit.org>
parents:
7354
diff
changeset
|
27 nongui: /tmp $(SCRIPTS_FIRST) $(SCRIPTS) |
7 | 28 csh -c echo ALL DONE |
29 | |
30 clean: | |
31 csh -c \rm -rf *.out /tmp/* Xdotest small.vim tiny.vim mbyte.vim test.ok viminfo | |
32 | |
33 .in.out: | |
34 copy $*.ok test.ok | |
8322
cff44093ddb0
commit https://github.com/vim/vim/commit/9bfdba3de39c9d23d0d44c92b8aeb5a133513806
Christian Brabandt <cb@256bit.org>
parents:
7623
diff
changeset
|
35 $(VIMPROG) -u amiga.vim -U NONE --noplugin --not-a-term -s dotest.in $*.in |
7 | 36 diff test.out $*.ok |
37 rename test.out $*.out | |
38 -delete X#? ALL QUIET | |
39 -delete test.ok | |
40 | |
41 # Create a directory for temp files | |
42 /tmp: | |
43 makedir /tmp | |
44 | |
7354
81dc9e30aad6
commit https://github.com/vim/vim/commit/7b6156f4cd4027b664a916ba546e9b05d4c49e11
Christian Brabandt <cb@256bit.org>
parents:
7350
diff
changeset
|
45 # Manx requires all dependencies, but we stopped updating them. |
81dc9e30aad6
commit https://github.com/vim/vim/commit/7b6156f4cd4027b664a916ba546e9b05d4c49e11
Christian Brabandt <cb@256bit.org>
parents:
7350
diff
changeset
|
46 # Delete the .out file(s) to run test(s). |