view src/testdir/Make_amiga.mak @ 22155:de47cb7b41e6 v8.2.1627

patch 8.2.1627: Vim9: cannot pass "true" to submatch/term_gettty/term_start Commit: https://github.com/vim/vim/commit/ad30470610e228e66afb837fdbab6bea36c43de4 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Sep 6 18:22:53 2020 +0200 patch 8.2.1627: Vim9: cannot pass "true" to submatch/term_gettty/term_start Problem: Vim9: cannot pass "true" to submatch(), term_gettty() and term_start() Solution: Use tv_get_bool_chk(). (closes #6888, closes #6890, closes #6889)
author Bram Moolenaar <Bram@vim.org>
date Sun, 06 Sep 2020 18:30:03 +0200
parents e529f06721f9
children
line wrap: on
line source

#
# Makefile to run all tests for Vim, on Amiga
#
# Requires "rm", "csh" and "diff"!

VIMPROG = /vim

default: nongui

include Make_all.mak

SCRIPTS = $(SCRIPTS_TINY_OUT)

.SUFFIXES: .in .out .res .vim

nongui:	/tmp $(SCRIPTS)
	csh -c echo ALL DONE

clean:
	csh -c \rm -rf *.out Xdir1 Xfind XfakeHOME Xdotest test.ok viminfo

.in.out:
	copy $*.ok test.ok
	$(VIMPROG) -u amiga.vim -U NONE --noplugin --not-a-term -s dotest.in $*.in
	diff test.out $*.ok
	rename test.out $*.out
	-delete X#? ALL QUIET
	-delete test.ok

# Create a directory for temp files
/tmp:
	makedir /tmp

# Manx requires all dependencies, but we stopped updating them.
# Delete the .out file(s) to run test(s).