summaryrefslogtreecommitdiff
path: root/src/testdir/test_clientserver.vim
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.1.1993: more functions can be used as methodsv8.1.1993Bram Moolenaar2019-09-061-1/+1
| | | | | Problem: More functions can be used as methods. Solution: Make various functions usable as a method.
* patch 8.1.1987: more functions can be used as methodsv8.1.1987Bram Moolenaar2019-09-041-6/+6
| | | | | Problem: More functions can be used as methods. Solution: Make various functions usable as a method.
* patch 8.1.1826: tests use hand coded feature and option checksv8.1.1826Bram Moolenaar2019-08-071-3/+3
| | | | | Problem: Tests use hand coded feature and option checks. Solution: Use the commands from check.vim in more tests.
* patch 8.1.1483: skipped tests are not properly listedv8.1.1483Bram Moolenaar2019-06-061-1/+1
| | | | | Problem: Skipped tests are not properly listed. Solution: Throw a "Skipped" exception instead of using ":finish" or ":return".
* patch 8.0.1771: in tests, when WaitFor() fails it doesn't say whyv8.0.1771Bram Moolenaar2018-04-281-8/+5
| | | | | Problem: In tests, when WaitFor() fails it doesn't say why. (James McCoy) Solution: Add WaitForAssert(), which produces an assert error when it fails.
* patch 8.0.1697: various tests are still a bit flakyv8.0.1697Bram Moolenaar2018-04-111-1/+1
| | | | | Problem: Various tests are still a bit flaky. Solution: Increase the default wait time to five seconds.
* patch 8.0.1260: using global variables for WaitFor()v8.0.1260Bram Moolenaar2017-11-041-12/+11
| | | | | | Problem: Using global variables for WaitFor(). Solution: Use a lambda function instead. Don't check a condition if WaitFor() already checked it.
* patch 8.0.1251: invalid expressin passed to WaitFor()v8.0.1251Bram Moolenaar2017-11-021-1/+1
| | | | | Problem: Invalid expressin passed to WaitFor(). Solution: Check if the variable exists.
* patch 8.0.1082: tests fail when run under valgrindv8.0.1082Bram Moolenaar2017-09-091-1/+2
| | | | | Problem: Tests fail when run under valgrind. Solution: Increase waiting times.
* patch 8.0.0633: the client-server test is still a bit flakyv8.0.0633Bram Moolenaar2017-06-101-1/+3
| | | | | | Problem: The client-server test is still a bit flaky. Solution: Wait a bit for the GUI to start. Check that the version number can be obtained.
* patch 8.0.0511: message for skipping client-server tests is unclearv8.0.0511Bram Moolenaar2017-03-251-3/+5
| | | | | | Problem: Menuage for skipping client-server tests is unclear. Solution: Be more specific about what's missing (Hirohito Higashi, Kazunobu Kuriyama)
* patch 8.0.0507: client-server tests fail when $DISPLAY is not setv8.0.0507Bram Moolenaar2017-03-251-0/+11
| | | | | Problem: Client-server tests fail when $DISPLAY is not set. Solution: Check for E240 before running the test.
* patch 8.0.0492: a failing client-server request can make Vim hangv8.0.0492Bram Moolenaar2017-03-191-41/+17
| | | | | Problem: A failing client-server request can make Vim hang. Solution: Add a timeout argument to functions that wait.
* patch 8.0.0479: remote_peek() is not testedv8.0.0479Bram Moolenaar2017-03-181-0/+21
| | | | | Problem: remote_peek() is not tested. Solution: Add a test.
* patch 8.0.0477: the client-server test may hang when failingv8.0.0477Bram Moolenaar2017-03-181-3/+31
| | | | | Problem: The client-server test may hang when failing. Solution: Set a timer. Add assert_report()
* patch 8.0.0475: not enough testing for the client-server featurev8.0.0475Bram Moolenaar2017-03-181-0/+25
| | | | | | Problem: Not enough testing for the client-server feature. Solution: Add more tests. Add the remote_startserver() function. Fix that a locally evaluated expression uses function-local variables.
* patch 8.0.0474: the client-server feature is not testedv8.0.0474Bram Moolenaar2017-03-181-0/+42
Problem: The client-server feature is not tested. Solution: Add a test.