summaryrefslogtreecommitdiffstats
path: root/src/testdir/test_clientserver.vim
AgeCommit message (Collapse)Author
2019-09-06patch 8.1.1993: more functions can be used as methodsv8.1.1993Bram Moolenaar
Problem: More functions can be used as methods. Solution: Make various functions usable as a method.
2019-09-04patch 8.1.1987: more functions can be used as methodsv8.1.1987Bram Moolenaar
Problem: More functions can be used as methods. Solution: Make various functions usable as a method.
2019-08-07patch 8.1.1826: tests use hand coded feature and option checksv8.1.1826Bram Moolenaar
Problem: Tests use hand coded feature and option checks. Solution: Use the commands from check.vim in more tests.
2019-06-06patch 8.1.1483: skipped tests are not properly listedv8.1.1483Bram Moolenaar
Problem: Skipped tests are not properly listed. Solution: Throw a "Skipped" exception instead of using ":finish" or ":return".
2018-04-28patch 8.0.1771: in tests, when WaitFor() fails it doesn't say whyv8.0.1771Bram Moolenaar
Problem: In tests, when WaitFor() fails it doesn't say why. (James McCoy) Solution: Add WaitForAssert(), which produces an assert error when it fails.
2018-04-11patch 8.0.1697: various tests are still a bit flakyv8.0.1697Bram Moolenaar
Problem: Various tests are still a bit flaky. Solution: Increase the default wait time to five seconds.
2017-11-04patch 8.0.1260: using global variables for WaitFor()v8.0.1260Bram Moolenaar
Problem: Using global variables for WaitFor(). Solution: Use a lambda function instead. Don't check a condition if WaitFor() already checked it.
2017-11-02patch 8.0.1251: invalid expressin passed to WaitFor()v8.0.1251Bram Moolenaar
Problem: Invalid expressin passed to WaitFor(). Solution: Check if the variable exists.
2017-09-09patch 8.0.1082: tests fail when run under valgrindv8.0.1082Bram Moolenaar
Problem: Tests fail when run under valgrind. Solution: Increase waiting times.
2017-06-10patch 8.0.0633: the client-server test is still a bit flakyv8.0.0633Bram Moolenaar
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.
2017-03-25patch 8.0.0511: message for skipping client-server tests is unclearv8.0.0511Bram Moolenaar
Problem: Menuage for skipping client-server tests is unclear. Solution: Be more specific about what's missing (Hirohito Higashi, Kazunobu Kuriyama)
2017-03-25patch 8.0.0507: client-server tests fail when $DISPLAY is not setv8.0.0507Bram Moolenaar
Problem: Client-server tests fail when $DISPLAY is not set. Solution: Check for E240 before running the test.
2017-03-19patch 8.0.0492: a failing client-server request can make Vim hangv8.0.0492Bram Moolenaar
Problem: A failing client-server request can make Vim hang. Solution: Add a timeout argument to functions that wait.
2017-03-18patch 8.0.0479: remote_peek() is not testedv8.0.0479Bram Moolenaar
Problem: remote_peek() is not tested. Solution: Add a test.
2017-03-18patch 8.0.0477: the client-server test may hang when failingv8.0.0477Bram Moolenaar
Problem: The client-server test may hang when failing. Solution: Set a timer. Add assert_report()
2017-03-18patch 8.0.0475: not enough testing for the client-server featurev8.0.0475Bram Moolenaar
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.
2017-03-18patch 8.0.0474: the client-server feature is not testedv8.0.0474Bram Moolenaar
Problem: The client-server feature is not tested. Solution: Add a test.