diff options
author | Bram Moolenaar <Bram@vim.org> | 2015-12-05 20:56:57 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2015-12-05 20:56:57 +0100 |
commit | 3f12a2421bda43a4e48c822541b75f72ee11125a (patch) | |
tree | a0c2d4f0413d59511d1f17b286ed378c4663a545 /src/Makefile | |
parent | 9dc2ce398bb3456cc8f590ef0260459798b34d2a (diff) | |
download | vim-git-3f12a2421bda43a4e48c822541b75f72ee11125a.tar.gz |
patch 7.4.962v7.4.962
Problem: Cannot run the tests with gvim. Cannot run individual new stests.
Solution: Add the -f flag. Add new test targets in Makefile.
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index ab1014f9e..3f29d461f 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1945,7 +1945,16 @@ test1 \ test80 test81 test82 test83 test84 test85 test86 test87 test88 test89 \ test90 test91 test92 test93 test94 test95 test96 test97 test98 test99 \ test100 test101 test102 test103 test104 test105 test106 test107: - cd testdir; rm $@.out; $(MAKE) -f Makefile $@.out VIMPROG=../$(VIMTARGET) $(GUI_TESTARG) SCRIPTSOURCE=../$(SCRIPTSOURCE) + cd testdir; rm -f $@.out; $(MAKE) -f Makefile $@.out VIMPROG=../$(VIMTARGET) $(GUI_TESTARG) SCRIPTSOURCE=../$(SCRIPTSOURCE) + +test_assert \ + test_sort \ + test_undolevels \ + test_alot: + cd testdir; rm -f $@.res; $(MAKE) -f Makefile $@.res VIMPROG=../$(VIMTARGET) $(GUI_TESTARG) SCRIPTSOURCE=../$(SCRIPTSOURCE) + +newtests: + cd testdir; rm -f $@.res; $(MAKE) -f Makefile newtests VIMPROG=../$(VIMTARGET) $(GUI_TESTARG) SCRIPTSOURCE=../$(SCRIPTSOURCE) testclean: cd testdir; $(MAKE) -f Makefile clean |