diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-12-16 22:43:31 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-12-16 22:43:31 +0100 |
commit | afc13bd8271819c7871ff2ae2cfebb22190a0d39 (patch) | |
tree | 29ac3ef9ad7dd3c020120ed9842b3ae376298d71 /src/Makefile | |
parent | ddef129160ff0676e5da482071fb2fdc2988ac34 (diff) | |
download | vim-git-afc13bd8271819c7871ff2ae2cfebb22190a0d39.tar.gz |
patch 8.2.0014: test69 and test95 are old stylev8.2.0014
Problem: Test69 and test95 are old style.
Solution: Convert to new style tests. (Yegappan Lakshmanan, closes #5365)
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile index 1a407ac38..1c7094098 100644 --- a/src/Makefile +++ b/src/Makefile @@ -2255,10 +2255,9 @@ test1 \ test_eval \ test42 test44 test49 \ test52 test59 \ - test69 \ test70 \ test86 test87 \ - test95 test99: + test99: cd testdir; rm -f $@.out; $(MAKE) -f Makefile $@.out VIMPROG=../$(VIMTESTTARGET) $(GUI_TESTARG) SCRIPTSOURCE=../$(SCRIPTSOURCE) # Run individual NEW style test. |