summaryrefslogtreecommitdiffstats
path: root/src/testdir/test_clientserver.vim
AgeCommit message (Collapse)Author
2020-08-12patch 8.2.1432: various inconsistencies in test filesv8.2.1432Bram Moolenaar
Problem: Various inconsistencies in test files. Solution: Add modelines where they were missing. Use Check commands instead of silently skipping over tests. Adjust indents and comments. (Ken Takata, closes #6695)
2020-07-12patch 8.2.1197: clientserver test still fails on MS-Windowsv8.2.1197Bram Moolenaar
Problem: Clientserver test still fails on MS-Windows. Solution: Expect a different error message.
2020-07-12patch 8.2.1195: clientserver test fails on MS-Windowsv8.2.1195Bram Moolenaar
Problem: Clientserver test fails on MS-Windows. Solution: Expect a different error message.
2020-07-11patch 8.2.1183: assert_fails() checks the last error messagev8.2.1183Bram Moolenaar
Problem: assert_fails() checks the last error message. Solution: Check the first error, it is more relevant. Fix all the tests that rely on the old behavior.
2020-04-26patch 8.2.0644: insufficient testing for invalid function argumentsv8.2.0644Bram Moolenaar
Problem: Insufficient testing for invalid function arguments. Solution: Add more tests. (Yegappan Lakshmanan, closes #5988)
2020-04-08patch 8.2.0534: client-server test fails under valgrindv8.2.0534Bram Moolenaar
Problem: Client-server test fails under valgrind. Solution: Use WaitForAssert().
2020-04-06patch 8.2.0522: several errors are not tested forv8.2.0522Bram Moolenaar
Problem: Several errors are not tested for. Solution: Add tests. (Yegappan Lakshmanan, closes #5892)
2020-04-04patch 8.2.0509: various code is not properly tested.v8.2.0509Bram Moolenaar
Problem: various code is not properly tested. Solution: Add more tests. (Yegappan Lakshmanan, closes #5871)
2020-03-30patch 8.2.0482: channel and sandbox code not sufficiently testedv8.2.0482Bram Moolenaar
Problem: Channel and sandbox code not sufficiently tested. Solution: Add more tests. (Yegappan Lakshmanan, closes #5855)
2020-03-25patch 8.2.0448: various functions not properly testedv8.2.0448Bram Moolenaar
Problem: Various functions not properly tested. Solution: Add more tests, especially for failures. (Yegappan Lakshmanan, closes #5843)
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.