summaryrefslogtreecommitdiff
path: root/src/testdir/test_cscope.vim
Commit message (Collapse)AuthorAgeFilesLines
* patch 9.0.0584: cscope test with wrong executable name failsv9.0.0584Bram Moolenaar2022-09-251-9/+5
| | | | | Problem: Cscope test with wrong executable name fails. Solution: Use /bin/sh to execute the command. (Yegappan Lakshmanan)
* patch 9.0.0565: cscope test causes problems with test timeout timerv9.0.0565Bram Moolenaar2022-09-231-1/+2
| | | | | | Problem: Cscope test causes problems when code for test timeout timer is included (even when commented out). Solution: Disable part of the cscope test for now.
* patch 9.0.0491: no good reason to build without the float featurev9.0.0491Bram Moolenaar2022-09-171-19/+17
| | | | | Problem: No good reason to build without the float feature. Solution: Remove configure check for float and "#ifdef FEAT_FLOAT".
* patch 9.0.0418: manually deleting temp test filesv9.0.0418Bram Moolenaar2022-09-081-3/+1
| | | | | Problem: Manually deleting temp test files. Solution: Use the 'D' flag of writefile() and mkdir().
* patch 8.2.5143: some tests fail when using valgrindv8.2.5143Bram Moolenaar2022-06-211-4/+7
| | | | | | Problem: Some tests fail when using valgrind. Spurious leak reports. Solution: Use WaitForAssert(). Avoid failing fork/exec. Skip tests where a job is killed when running valgrind.
* patch 8.2.4081: CodeQL reports problem in if_cscope causing it to failv8.2.4081ichizok2022-01-131-1/+1
| | | | | | Problem: CodeQL reports problem in if_cscope causing it to fail. Solution: Use execvp() instead of execl(). Merge the header file into the source file. (Ozaki Kiichi, closes #9519)
* patch 8.2.2884: not enough cscope code is covered by testsv8.2.2884Dominique Pelle2021-05-241-1/+13
| | | | | Problem: Not enough cscope code is covered by tests. Solution: Add a few test cases. (Dominique Pellé, closes #8246)
* patch 8.2.1593: tests do not check the error number properlyv8.2.1593Bram Moolenaar2020-09-041-3/+3
| | | | | Problem: Tests do not check the error number properly.0 Solution: Add a colon after the error number. (closes #6869)
* patch 8.2.1183: assert_fails() checks the last error messagev8.2.1183Bram Moolenaar2020-07-111-1/+1
| | | | | | 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.
* patch 8.2.1128: the write message mentions characters, but it's bytesv8.2.1128Bram Moolenaar2020-07-051-2/+2
| | | | | Problem: The write message mentions characters, but it's actually bytes. Solution: Change "C" to "B" and "characters" to "bytes".
* patch 8.2.0511: Cscope code not fully testedv8.2.0511Bram Moolenaar2020-04-051-29/+53
| | | | | Problem: Cscope code not fully tested. Solution: Add more test cases. (Dominique Pelle, closes #5886)
* patch 8.2.0183: tests fail when the float feature is disabledv8.2.0183Bram Moolenaar2020-01-301-17/+19
| | | | | Problem: Tests fail when the float feature is disabled. Solution: Skip tests that don't work without float support.
* patch 8.1.1826: tests use hand coded feature and option checksv8.1.1826Bram Moolenaar2019-08-071-4/+1
| | | | | Problem: Tests use hand coded feature and option checks. Solution: Use the commands from check.vim in more tests.
* patch 8.1.1544: some balloon tests don't run when they canv8.1.1544Bram Moolenaar2019-06-151-4/+5
| | | | | | | 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.
* patch 8.1.1524: tests are silently skippedv8.1.1524Bram Moolenaar2019-06-131-2/+5
| | | | | Problem: Tests are silently skipped. Solution: Throw an exception for skipped tests in more places.
* patch 8.1.1467: cscope test failsv8.1.1467Bram Moolenaar2019-06-041-2/+2
| | | | | Problem: Cscope test fails. Solution: Update expected text.
* patch 8.1.1414: alloc() returning "char_u *" causes a lot of type castsv8.1.1414Bram Moolenaar2019-05-281-2/+2
| | | | | | 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.
* patch 8.1.0317: Cscope test fails when using shadow directoryv8.1.0317Bram Moolenaar2018-08-221-1/+6
| | | | | Problem: Cscope test fails when using shadow directory. Solution: Resolve symlink in Vim. (James McCoy, closes #3364)
* patch 8.1.0188: no test for ":cscope add"v8.1.0188Bram Moolenaar2018-07-151-0/+18
| | | | | Problem: No test for ":cscope add". Solution: Add a test. (Dominique Pelle, closes #3212)
* patch 8.0.1845: various comment updates needed, missing white spacev8.0.1845Bram Moolenaar2018-05-151-27/+27
| | | | | Problem: Various comment updates needed, missing white space. Solution: Update comments, add white space.
* patch 8.0.0478: tests use assert_true(0) and assert_false(1) to report errorsv8.0.0478Bram Moolenaar2017-03-181-1/+1
| | | | | Problem: Tests use assert_true(0) and assert_false(1) to report errors. Solution: Use assert_report().
* patch 7.4.2295v7.4.2295Bram Moolenaar2016-08-301-2/+5
| | | | | Problem: Cscope test fails. Solution: Avoid checking for specific line and column numbers.
* patch 7.4.2175v7.4.2175Bram Moolenaar2016-08-071-82/+189
| | | | | Problem: Insufficient testing of cscope. Solution: Add more tests. (Dominique Pelle)
* patch 7.4.2159v7.4.2159Bram Moolenaar2016-08-051-7/+36
| | | | | Problem: Insufficient testing for cscope. Solution: Add more tests. (Dominique Pelle)
* patch 7.4.2148v7.4.2148Bram Moolenaar2016-08-021-1/+126
| | | | | Problem: Not much testing for cscope. Solution: Add a test that uses the cscope program. (Christian Brabandt)
* patch 7.4.2033v7.4.2033Bram Moolenaar2016-07-131-0/+15
Problem: 'cscopequickfix' option does not accept new value "a". Solution: Adjust list of command characters. (Ken Takata)