aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/testdir/summarize.vim
Commit message (Collapse)AuthorAge
* test: move oldtests to test directory (#22536)dundargoc2023-03-07
| | | | | The new oldtest directory is in test/old/testdir. The reason for this is that many tests have hardcoded the parent directory name to be 'testdir'.
* vim-patch:8.2.1441: running tests in tiny version gives error for summarize.vimJan Edmund Lazo2020-08-14
| | | | | | | Problem: Running tests in tiny version gives error for summarize.vim. Solution: Set 'cpoptions' to allow for line continuation. Restore redirecting test output to /dev/null. https://github.com/vim/vim/commit/c771908681bc9ee7689d83e09104cf4c6f984326
* vim-patch:8.2.1041: test summary is missing executed count (#12519)Jan Edmund Lazo2020-06-23
| | | | | Problem: Test summary is missing executed count. Solution: Adjust pattern used for counting. https://github.com/vim/vim/commit/7eaafe65eef88493c789b160914c8e2e8e42d4a7
* vim-patch:8.2.0058: running tests changes ~/.viminfoJan Edmund Lazo2019-12-29
| | | | | | Problem: Running tests changes ~/.viminfo. Solution: Make 'viminfo' empty when summarizing tests results. (closes vim/vim#5414) https://github.com/vim/vim/commit/eb698d0b3295675f184ad4b62034e064cded4ade
* vim-patch:8.1.2087: cannot easily select one test function to executeJan Edmund Lazo2019-12-29
| | | | | | | Problem: Cannot easily select one test function to execute. Solution: Support the $TEST_FILTER environment variable. (Ozaki Kiichi, closes vim/vim#2695) https://github.com/vim/vim/commit/a7f6c3cf071bb6267e0bd2eb3d27ca240381ba87
* vim-patch:8.1.1947: when executing one test the report doesn't show it #10893Daniel Hahler2019-08-30
| | | | | Problem: When executing one test the report doesn't show it. Solution: Adjust the regexp. (Daniel Hahler, closes vim/vim#4879) https://github.com/vim/vim/commit/60b1bcfe92da1d7b8f894c91192f3a76e8aec391
* vim-patch:8.1.1893: script to summarize test results can be improvedDaniel Hahler2019-08-22
| | | | | | | Problem: Script to summarize test results can be improved. Solution: Use "silent" for substitute to avoid reporting number of matches. Remove duplicate "set nocp". (Daniel Hahler, closes vim/vim#4845) https://github.com/vim/vim/commit/f1e0544d413b8b2ea129db0655b4e123d54177a6
* vim-patch:8.1.1478: still an error when running tests with the tiny versionDaniel Hahler2019-08-22
| | | | | | Problem: Still an error when running tests with the tiny version. Solution: Do not try reading test.log https://github.com/vim/vim/commit/18250e291a5b4b8e32229d99ccb7c895ff0ca637
* vim-patch:8.1.1477: test summary fails in the tiny versionDaniel Hahler2019-08-22
| | | | | | Problem: Test summary fails in the tiny version. Solution: set 'nocompatible'. https://github.com/vim/vim/commit/c7500f9cb5b9fbedb9f1a385fdc3790335054bd3
* vim-patch:8.1.1488: summary of tests has incorrect failed countDaniel Hahler2019-08-22
| | | | | | Problem: Summary of tests has incorrect failed count. Solution: Add to the failed count instead of setting it. (Christian Brabandt) https://github.com/vim/vim/commit/150f0550f45b836200a189e4d34417f4d3467455
* vim-patch:8.1.1476: no statistics displayed after running testsDaniel Hahler2019-08-22
Problem: No statistics displayed after running tests. Solution: Summarize the test results. (Christian Brabandt, closes vim/vim#4391) Also make it possible to report a skipped file. https://github.com/vim/vim/commit/9c0cec65f891492314caadeef87a50251a21e630 Removes our custom no-inits from `$(RUN_VIMTEST)`, since we have `$(NO_INITS)` now also.