summaryrefslogtreecommitdiffstats
path: root/src/testdir/Makefile
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-08-11 20:42:19 +0200
committerBram Moolenaar <Bram@vim.org>2020-08-11 20:42:19 +0200
commitf7c4d83609acdfe0e4d0fec9413697ac97c0c3f9 (patch)
tree7872b2cb248f6e0bd9624bee8a0885185d9e82e1 /src/testdir/Makefile
parent59eccb92e3c68f65525e08d2113213ff7d7ed00a (diff)
patch 8.2.1420: test 49 is old stylev8.2.1420
Problem: Test 49 is old style. Solution: Convert remaining parts to new style. Remove obsolete items. (Yegappan Lakshmanan, closes #6683)
Diffstat (limited to 'src/testdir/Makefile')
-rw-r--r--src/testdir/Makefile50
1 files changed, 5 insertions, 45 deletions
diff --git a/src/testdir/Makefile b/src/testdir/Makefile
index 7f9ef04342..0d51fde3e1 100644
--- a/src/testdir/Makefile
+++ b/src/testdir/Makefile
@@ -23,28 +23,19 @@ REDIR_TEST_TO_NULL = --cmd 'au SwapExists * let v:swapchoice = "e"' > /dev/null
default: nongui
# The list of tests is common to all systems.
-# This defines NEW_TESTS, NEW_TESTS_RES, SCRIPTS_ALL, SCRIPTS_MORE* and
-# SCRIPTS_GUI.
+# This defines SCRIPTS_FIRST, NEW_TESTS and NEW_TESTS_RES
include Make_all.mak
-
-SCRIPTS = $(SCRIPTS_ALL) \
- $(SCRIPTS_MORE1) \
- $(SCRIPTS_MORE2) \
- $(SCRIPTS_MORE4)
-
# Explicit dependencies.
-test49.out: test49.vim
-
test_options.res test_alot.res: opt_test.vim
SCRIPTS_BENCH = test_bench_regexp.res
.SUFFIXES: .in .out .res .vim
-nongui: nolog $(SCRIPTS_FIRST) $(SCRIPTS) newtests report
+nongui: nolog $(SCRIPTS_FIRST) newtests report
-gui: nolog $(SCRIPTS_FIRST) $(SCRIPTS) $(SCRIPTS_GUI) newtests report
+gui: nolog $(SCRIPTS_FIRST) newtests report
benchmark: $(SCRIPTS_BENCH)
@@ -63,10 +54,10 @@ report:
else echo ALL DONE; \
fi"
-$(SCRIPTS_FIRST) $(SCRIPTS) $(SCRIPTS_GUI) $(NEW_TESTS_RES): $(VIMPROG)
+$(SCRIPTS_FIRST) $(NEW_TESTS_RES): $(VIMPROG)
# Must run test1 first to create small.vim.
-$(SCRIPTS) $(SCRIPTS_GUI) $(NEW_TESTS_RES): $(SCRIPTS_FIRST)
+$(NEW_TESTS_RES): $(SCRIPTS_FIRST)
# Execute an individual new style test, e.g.:
@@ -116,37 +107,6 @@ test1.out: test1.in
echo; exit 1; fi"
-rm -rf X* viminfo
-.in.out:
- -rm -rf $*.failed test.ok $(RM_ON_RUN)
- cp $*.ok test.ok
- # Sleep a moment to avoid that the xterm title is messed up.
- # 200 msec is sufficient, but only modern sleep supports a fraction of
- # a second, fall back to a second if it fails.
- @-/bin/sh -c "sleep .2 > /dev/null 2>&1 || sleep 1"
- $(RUN_VIM) $*.in $(REDIR_TEST_TO_NULL)
-
- # For flaky tests retry one time. No tests at the moment.
- #@/bin/sh -c "if test -f test.out -a $* = test61; then \
- # if diff test.out $*.ok; \
- # then echo flaky test ok first time; \
- # else rm -rf $*.failed $(RM_ON_RUN); \
- # $(RUN_VIM) $*.in; \
- # fi \
- # fi"
-
- # Check if the test.out file matches test.ok.
- @/bin/sh -c "if test -f test.out; then \
- if diff test.out $*.ok; \
- then mv -f test.out $*.out; \
- else echo $* FAILED >>test.log; mv -f test.out $*.failed; \
- fi \
- else echo $* NO OUTPUT >>test.log; \
- fi"
- @/bin/sh -c "if test -f valgrind; then\
- mv -f valgrind valgrind.$*; \
- fi"
- -rm -rf X* test.ok viminfo
-
nolog:
-rm -f test.log messages