diff options
author | Bram Moolenaar <Bram@vim.org> | 2015-12-30 15:49:05 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2015-12-30 15:49:05 +0100 |
commit | c06624661a3aa6642304c06db9cebe553a4cab17 (patch) | |
tree | debe51a816c441c2fc2ceb9599dc767baaf8545d /src/Makefile | |
parent | b8cb643eab0e84d6a41f5884c7e41736218425fb (diff) | |
download | vim-git-c06624661a3aa6642304c06db9cebe553a4cab17.tar.gz |
patch 7.4.1000v7.4.1000
Problem: Test 49 is slow and doesn't work on MS-Windows.
Solution: Start moving parts of test 49 to test_viml.
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile index 4096e556e..522678cd6 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1976,12 +1976,19 @@ test_assert \ test_searchpos \ test_sort \ test_undolevels \ + test_viml \ test_alot: cd testdir; rm -f $@.res test.log messages; $(MAKE) -f Makefile $@.res VIMPROG=../$(VIMTARGET) $(GUI_TESTARG) SCRIPTSOURCE=../$(SCRIPTSOURCE) + @if test -f testdir/test.log; then \ + cat testdir/test.log; \ + fi cat testdir/messages newtests: cd testdir; rm -f $@.res test.log messages; $(MAKE) -f Makefile newtests VIMPROG=../$(VIMTARGET) $(GUI_TESTARG) SCRIPTSOURCE=../$(SCRIPTSOURCE) + @if test -f testdir/test.log; then \ + cat testdir/test.log; \ + fi cat testdir/messages testclean: |