summaryrefslogtreecommitdiff
path: root/src/testdir/Make_os2.mak
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2015-12-31 19:07:19 +0100
committerBram Moolenaar <Bram@vim.org>2015-12-31 19:07:19 +0100
commite7fedb6ebe72d9a475aa65109b77d5ed4667067a (patch)
tree19327fc9d1ca538d9c5c81c7284adf492e790e6d /src/testdir/Make_os2.mak
parente3303cb0817e826e3c25d5dc4ac10b569d0841e1 (diff)
downloadvim-git-e7fedb6ebe72d9a475aa65109b77d5ed4667067a.tar.gz
patch 7.4.1008v7.4.1008
Problem: The OS/2 code pollutes the source while nobody uses it these days. Solution: Drop the support for OS/2.
Diffstat (limited to 'src/testdir/Make_os2.mak')
-rw-r--r--src/testdir/Make_os2.mak67
1 files changed, 0 insertions, 67 deletions
diff --git a/src/testdir/Make_os2.mak b/src/testdir/Make_os2.mak
deleted file mode 100644
index 828d354b4..000000000
--- a/src/testdir/Make_os2.mak
+++ /dev/null
@@ -1,67 +0,0 @@
-#
-# Makefile to run all tests for Vim, on OS/2
-#
-# OUTDATED, probably doesn't work.
-#
-# Requires a set of Unix tools: echo, diff, etc.
-#
-
-VIMPROG = ../vim.exe
-
-default: all
-
-include Make_all.mak
-
-# Omitted:
-# test2 "\\tmp" doesn't work.
-# test10 'errorformat' is different
-# test11 requires sed
-# test12 can't unlink a swap file
-# test25 uses symbolic link
-# test27 can't edit file with "*" in file name
-# test52 only for Win32
-# test85 no Lua interface
-# test86, 87 no Python interface
-# test97 \{ and \$ are not escaped characters.
-
-SCRIPTS = $(SCRIPTS_ALL) $(SCRIPTS_MORE3) $(SCRIPTS_MORE4)
-
-SCRIPTS_BENCH = bench_re_freeze.out
-
-.SUFFIXES: .in .out
-
-all: /tmp $(SCRIPTS_FIRST) $(SCRIPTS)
- @echo ALL DONE
-
-$(SCRIPTS_FIRST) $(SCRIPTS): $(VIMPROG)
-
-# Must run test1 first to create small.vim.
-$(SCRIPTS): $(SCRIPTS_FIRST)
-
-benchmark: $(SCRIPTS_BENCH)
-
-clean:
- -rm -rf *.out Xdotest test.ok tiny.vim small.vim mbyte.vim viminfo
-
-# Make sure all .in and .out files are in DOS fileformat.
-.in.out:
- $(VIMPROG) -u NONE -s todos.vim $*.in
- $(VIMPROG) -u NONE -s todos.vim $*.ok
- copy $*.ok test.ok
- $(VIMPROG) -u os2.vim --noplugin -s dotest.in $*.in
- $(VIMPROG) -u NONE -s todos.vim test.out
- diff test.out $*.ok
- rename test.out $*.out
- -rm -rf X* viminfo
- -del test.ok
-
-# Create a directory for temp files
-/tmp:
- -mkdir /tmp
-
-bench_re_freeze.out: bench_re_freeze.vim
- -del $*.failed test.ok benchmark.out
- copy $*.ok test.ok
- $(VIMPROG) -u os2.vim --noplugin -s dotest.in $*.in
- type benchmark.out
-