summaryrefslogtreecommitdiff
path: root/src/testdir/check.vim
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.2.2611: conditions for startup tests are not exactly rightv8.2.2611Bram Moolenaar2021-03-171-0/+25
| | | | | | Problem: Conditions for startup tests are not exactly right. Solution: Check for type of GUI instead of MS-Windows. (Ozaki Kiichi, closes #7976)
* patch 8.2.2587: recover test fails on FreeBSDv8.2.2587Bram Moolenaar2021-03-101-1/+9
| | | | | Problem: Recover test fails on FreeBSD. Solution: Check for Linux.
* patch 8.2.2424: some tests are known to cause an error with ASANv8.2.2424Bram Moolenaar2021-01-281-0/+8
| | | | | Problem: Some tests are known to cause an error with ASAN. Solution: Add CheckNotAsan.
* patch 8.2.0665: wrongly assuming Python executable is called "python"v8.2.0665Bram Moolenaar2020-04-301-0/+8
| | | | | | Problem: Wrongly assuming Python executable is called "python". Solution: Use detected python command. (Ken Takata, closes #6016) Also use CheckFunction if possible.
* patch 8.2.0557: no IPv6 support for channelsv8.2.0557Bram Moolenaar2020-04-121-0/+33
| | | | | Problem: No IPv6 support for channels. Solution: Add IPv6 support. (Ozaki Kiichi, closes #5893)
* patch 8.2.0509: various code is not properly tested.v8.2.0509Bram Moolenaar2020-04-041-0/+10
| | | | | Problem: various code is not properly tested. Solution: Add more tests. (Yegappan Lakshmanan, closes #5871)
* patch 8.2.0459: cannot check if a function name is correctv8.2.0459Bram Moolenaar2020-03-261-1/+4
| | | | | Problem: Cannot check if a function name is correct. Solution: Add "?funcname" to exists().
* patch 8.2.0429: no warning when test checks for option that never existsv8.2.0429Bram Moolenaar2020-03-221-0/+3
| | | | | Problem: No warning when test checks for option that never exists. Solution: In tests check that the option can exist.
* patch 8.2.0427: it is not possible to check for a typo in a feature namev8.2.0427Bram Moolenaar2020-03-221-0/+3
| | | | | Problem: It is not possible to check for a typo in a feature name. Solution: Add an extra argument to has().
* patch 8.2.0195: some tests fail when run in the GUIv8.2.0195Bram Moolenaar2020-02-021-0/+1
| | | | | | Problem: Some tests fail when run in the GUI. Solution: Make sure the window width is enough. In the GUI run terminal Vim in the terminal, if possible.
* patch 8.2.0188: Check commands don't work well with Vim9 scriptv8.2.0188Bram Moolenaar2020-01-311-1/+3
| | | | | Problem: Check commands don't work well with Vim9 script. Solution: Improve constant expression handling.
* patch 8.1.2358: tests fail on Cirrus CI for FreeBSDv8.1.2358Bram Moolenaar2019-11-291-0/+9
| | | | | Problem: Tests fail on Cirrus CI for FreeBSD. Solution: Fix a test and skip some. (Christian Brabandt, closes #5281)
* patch 8.1.2133: some tests fail when run as rootv8.1.2133Bram Moolenaar2019-10-101-0/+10
| | | | | Problem: Some tests fail when run as root. Solution: Add CheckNotRoot and use it. (James McCoy, closes #5020)
* patch 8.1.1831: confusing skipped messagev8.1.1831Bram Moolenaar2019-08-091-1/+1
| | | | | Problem: Confusing skipped message. Solution: Drop "run" from "run start the GUI".
* patch 8.1.1826: tests use hand coded feature and option checksv8.1.1826Bram Moolenaar2019-08-071-0/+48
| | | | | Problem: Tests use hand coded feature and option checks. Solution: Use the commands from check.vim in more tests.
* patch 8.1.1804: no test for display updating without a scroll regionv8.1.1804Bram Moolenaar2019-08-031-0/+17
| | | | | Problem: No test for display updating without a scroll region. Solution: Add a test.
* patch 8.1.1776: text added with a job isn't displayedv8.1.1776Bram Moolenaar2019-07-291-0/+16
| | | | | Problem: Text added with a job to another buffer isn't displayed. Solution: Update topline after adding a line. (closes #4745)
* patch 8.1.1544: some balloon tests don't run when they canv8.1.1544Bram Moolenaar2019-06-151-0/+23
Problem: Some balloon tests don't run when they can. Solution: Split GUI balloon tests off into a separate file. (Ozaki Kiichi, closes #4538) Change the feature check into a command for consistency.