comparison src/testdir/Makefile @ 21951:3ece5c9fe811 v8.2.1525

patch 8.2.1525: messages from tests were not always displayed Commit: https://github.com/vim/vim/commit/6e3aeec8461cf27396b6574b5438019a00684e00 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Aug 26 22:29:57 2020 +0200 patch 8.2.1525: messages from tests were not always displayed Problem: Messages from tests were not always displayed. Solution: Always show messages, the timing is always useful. (Ken Takata, closes #6792)
author Bram Moolenaar <Bram@vim.org>
date Wed, 26 Aug 2020 22:45:04 +0200
parents 483dc3fd596c
children 947aba2d8c28
comparison
equal deleted inserted replaced
21950:e92c113380c5 21951:3ece5c9fe811
10 SCRIPTSOURCE = ../../runtime 10 SCRIPTSOURCE = ../../runtime
11 11
12 # Comment out this line to see the verbose output of tests. 12 # Comment out this line to see the verbose output of tests.
13 # 13 #
14 # Catches SwapExists to avoid hanging at the ATTENTION prompt. 14 # Catches SwapExists to avoid hanging at the ATTENTION prompt.
15 REDIR_TEST_TO_NULL = --cmd 'au SwapExists * let v:swapchoice = "e"' > /dev/null 15 #REDIR_TEST_TO_NULL = --cmd 'au SwapExists * let v:swapchoice = "e"' > /dev/null
16 16
17 # Uncomment this line to use valgrind for memory leaks and extra warnings. 17 # Uncomment this line to use valgrind for memory leaks and extra warnings.
18 # The output goes into a file "valgrind.testN" 18 # The output goes into a file "valgrind.testN"
19 # Vim should be compiled with EXITFREE to avoid false warnings. 19 # Vim should be compiled with EXITFREE to avoid false warnings.
20 # This will make testing about 10 times as slow. 20 # This will make testing about 10 times as slow.
124 # to write and a lot easier to read and debug. 124 # to write and a lot easier to read and debug.
125 # Limitation: Only works with the +eval feature. 125 # Limitation: Only works with the +eval feature.
126 RUN_VIMTEST = VIMRUNTIME=$(SCRIPTSOURCE) $(VALGRIND) $(VIMPROG) -f $(GUI_FLAG) -u unix.vim 126 RUN_VIMTEST = VIMRUNTIME=$(SCRIPTSOURCE) $(VALGRIND) $(VIMPROG) -f $(GUI_FLAG) -u unix.vim
127 127
128 newtests: newtestssilent 128 newtests: newtestssilent
129 @/bin/sh -c "if test -f messages && grep -q 'SKIPPED\|FAILED' messages; then cat messages; fi" 129 @/bin/sh -c "if test -f messages; then cat messages; fi"
130 130
131 newtestssilent: $(NEW_TESTS_RES) 131 newtestssilent: $(NEW_TESTS_RES)
132 132
133 133
134 .vim.res: 134 .vim.res: