summaryrefslogtreecommitdiffstats
path: root/src/testdir/test_cscope.vim
AgeCommit message (Collapse)Author
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-07-05patch 8.2.1128: the write message mentions characters, but it's bytesv8.2.1128Bram Moolenaar
Problem: The write message mentions characters, but it's actually bytes. Solution: Change "C" to "B" and "characters" to "bytes".
2020-04-05patch 8.2.0511: Cscope code not fully testedv8.2.0511Bram Moolenaar
Problem: Cscope code not fully tested. Solution: Add more test cases. (Dominique Pelle, closes #5886)
2020-01-30patch 8.2.0183: tests fail when the float feature is disabledv8.2.0183Bram Moolenaar
Problem: Tests fail when the float feature is disabled. Solution: Skip tests that don't work without float support.
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-15patch 8.1.1544: some balloon tests don't run when they canv8.1.1544Bram Moolenaar
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.
2019-06-13patch 8.1.1524: tests are silently skippedv8.1.1524Bram Moolenaar
Problem: Tests are silently skipped. Solution: Throw an exception for skipped tests in more places.
2019-06-04patch 8.1.1467: cscope test failsv8.1.1467Bram Moolenaar
Problem: Cscope test fails. Solution: Update expected text.
2019-05-28patch 8.1.1414: alloc() returning "char_u *" causes a lot of type castsv8.1.1414Bram Moolenaar
Problem: Alloc() returning "char_u *" causes a lot of type casts. Solution: Have it return "void *". (Mike Williams) Define ALLOC_ONE() to check the simple allocations.
2018-08-22patch 8.1.0317: Cscope test fails when using shadow directoryv8.1.0317Bram Moolenaar
Problem: Cscope test fails when using shadow directory. Solution: Resolve symlink in Vim. (James McCoy, closes #3364)
2018-07-15patch 8.1.0188: no test for ":cscope add"v8.1.0188Bram Moolenaar
Problem: No test for ":cscope add". Solution: Add a test. (Dominique Pelle, closes #3212)
2018-05-15patch 8.0.1845: various comment updates needed, missing white spacev8.0.1845Bram Moolenaar
Problem: Various comment updates needed, missing white space. Solution: Update comments, add white space.
2017-03-18patch 8.0.0478: tests use assert_true(0) and assert_false(1) to report errorsv8.0.0478Bram Moolenaar
Problem: Tests use assert_true(0) and assert_false(1) to report errors. Solution: Use assert_report().
2016-08-30patch 7.4.2295v7.4.2295Bram Moolenaar
Problem: Cscope test fails. Solution: Avoid checking for specific line and column numbers.
2016-08-07patch 7.4.2175v7.4.2175Bram Moolenaar
Problem: Insufficient testing of cscope. Solution: Add more tests. (Dominique Pelle)
2016-08-05patch 7.4.2159v7.4.2159Bram Moolenaar
Problem: Insufficient testing for cscope. Solution: Add more tests. (Dominique Pelle)
2016-08-02patch 7.4.2148v7.4.2148Bram Moolenaar
Problem: Not much testing for cscope. Solution: Add a test that uses the cscope program. (Christian Brabandt)
2016-07-13patch 7.4.2033v7.4.2033Bram Moolenaar
Problem: 'cscopequickfix' option does not accept new value "a". Solution: Adjust list of command characters. (Ken Takata)