summaryrefslogtreecommitdiffstats
path: root/src/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/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/Makefile')
-rw-r--r--src/Makefile8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/Makefile b/src/Makefile
index 55c3664727..5d73fc91a3 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -2259,8 +2259,6 @@ test check: unittests $(TERM_TEST) scripttests
#
# This will produce a lot of garbage on your screen, including a few error
# messages. Don't worry about that.
-# If there is a real error, there will be a difference between "testXX.out" and
-# a "testXX.ok" file.
# If everything is alright, the final message will be "ALL DONE". If not you
# get "TEST FAILURE".
#
@@ -2311,9 +2309,9 @@ test_libvterm:
CC="$(CC)" CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)"; \
fi
-# Run individual OLD style test.
-# These do not depend on the executable, compile it when needed.
-test1 test49:
+# Run test1, used to bootstrap tests.
+# This does not depend on the executable, compile first it when needed.
+test1:
cd testdir; rm -f $@.out; $(MAKE) -f Makefile $@.out VIMPROG=../$(VIMTESTTARGET) $(GUI_TESTARG) SCRIPTSOURCE=../$(SCRIPTSOURCE)
# Run individual NEW style test.