diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-07-03 18:00:05 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-07-03 18:00:05 +0200 |
commit | 92fdd1e75db3048516a93a18cc53ed984813c9e5 (patch) | |
tree | 20c741c05afa7c9ea98d2a3adb4a94c3914baf79 /src/Makefile | |
parent | 5289783e0b07cfc3f92ee933261ca4c4acdca007 (diff) | |
download | vim-git-92fdd1e75db3048516a93a18cc53ed984813c9e5.tar.gz |
patch 8.2.1120: Python code not tested properlyv8.2.1120
Problem: Python code not tested properly.
Solution: Add more tests and convert old-style test into new-style test.
(Yegappan Lakshmanan, closes #6370)
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index 105820a93..916666297 100644 --- a/src/Makefile +++ b/src/Makefile @@ -2308,7 +2308,7 @@ test1 \ test42 test44 test49 \ test52 test59 \ test70 \ - test86 test87 \ + test87 \ test99: cd testdir; rm -f $@.out; $(MAKE) -f Makefile $@.out VIMPROG=../$(VIMTESTTARGET) $(GUI_TESTARG) SCRIPTSOURCE=../$(SCRIPTSOURCE) |