comparison src/Makefile @ 16951:ebdf6cd89910 v8.1.1476

patch 8.1.1476: no statistics displayed after running tests commit https://github.com/vim/vim/commit/9c0cec65f891492314caadeef87a50251a21e630 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jun 6 13:38:15 2019 +0200 patch 8.1.1476: no statistics displayed after running tests Problem: No statistics displayed after running tests. Solution: Summarize the test results. (Christian Brabandt, closes https://github.com/vim/vim/issues/4391) Also make it possible to report a skipped file.
author Bram Moolenaar <Bram@vim.org>
date Thu, 06 Jun 2019 13:45:05 +0200
parents d615cc95089c
children 353ed7ef78df
comparison
equal deleted inserted replaced
16950:a8735038f8d5 16951:ebdf6cd89910
2115 echo "syn keyword Constant OK FAIL TRUE FALSE MAYBE" >> $@ 2115 echo "syn keyword Constant OK FAIL TRUE FALSE MAYBE" >> $@
2116 2116
2117 # TESTING 2117 # TESTING
2118 # 2118 #
2119 # Execute the test scripts and the unittests. 2119 # Execute the test scripts and the unittests.
2120 test check: scripttests unittests test_libvterm 2120 # Do the scripttests first, so that the summary shows last.
2121 test check: unittests test_libvterm scripttests
2121 2122
2122 # Execute the test scripts. Run these after compiling Vim, before installing. 2123 # Execute the test scripts. Run these after compiling Vim, before installing.
2123 # This doesn't depend on $(VIMTARGET), because that won't work when configure 2124 # This doesn't depend on $(VIMTARGET), because that won't work when configure
2124 # wasn't run yet. Restart make to build it instead. 2125 # wasn't run yet. Restart make to build it instead.
2125 # 2126 #