summaryrefslogtreecommitdiff
path: root/src/testdir/test_netbeans.vim
Commit message (Collapse)AuthorAgeFilesLines
* patch 9.0.1165: tests using IPv6 sometimes failv9.0.1165James McCoy2023-01-091-21/+25
| | | | | | Problem: Tests using IPv6 sometimes fail. Solution: Use getaddrinfo() and use try/catch. (James McCoy, closes #11783)
* patch 9.0.0626: too many delete() calls in testsv9.0.0626Bram Moolenaar2022-09-291-12/+6
| | | | | Problem: Too many delete() calls in tests. Solution: Use deferred delete where possible.
* patch 8.2.2916: operators are not fully testedv8.2.2916Yegappan Lakshmanan2021-05-311-0/+40
| | | | | Problem: Operators are not fully tested. Solution: Add a few more tests. (Yegappan Lakshmanan, closes #8290)
* patch 8.2.2160: various typosv8.2.2160Bram Moolenaar2020-12-181-1/+1
| | | | | Problem: Various typos. Solution: Fix spelling mistakes. (closes #7494)
* patch 8.2.1993: occasional failure of the netbeans testv8.2.1993Bram Moolenaar2020-11-161-2/+2
| | | | | Problem: Occasional failure of the netbeans test. Solution: Add "silent!". (Yegappan Lakshmanan, closes #7304)
* patch 8.2.1962: netbeans may access freed memoryv8.2.1962Bram Moolenaar2020-11-061-3/+43
| | | | | | Problem: Netbeans may access freed memory. Solution: Check the buffer pointer is still valid. Add a test. (Yegappan Lakshmanan, closes #7248)
* patch 8.2.1961: various comments can be improvedv8.2.1961Bram Moolenaar2020-11-051-0/+1
| | | | | Problem: Various comments can be improved. Solution: Various comment adjustments.
* patch 8.2.1944: Netbeans test is flakyv8.2.1944Bram Moolenaar2020-11-031-0/+2
| | | | | Problem: Netbeans test is flaky. Solution: Add a short delay. (Yegappan Lakshmanan, closes #7246)
* patch 8.2.1942: insufficient test coverage for the Netbeans interfacev8.2.1942Bram Moolenaar2020-11-021-8/+171
| | | | | | Problem: Insufficient test coverage for the Netbeans interface. Solution: Add more tests. Fix an uncovered bug. (Yegappan Lakshmanan, closes #7240)
* patch 8.2.1248: Netbeans test is flaky in the GUIv8.2.1248Bram Moolenaar2020-07-191-143/+157
| | | | | Problem: Netbeans test is flaky in the GUI. Solution: Filter out geometry messages. (Taro Muraoka, closes #6487)
* 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.0866: not enough tests for buffer writingv8.2.0866Bram Moolenaar2020-05-311-1/+11
| | | | | | Problem: Not enough tests for buffer writing. Solution: Add more tests. Use CheckRunVimInTerminal in more places. (Yegappan Lakshmanan, closes #6167)
* patch 8.2.0786: channel test is flaky on FreeBSDv8.2.0786Bram Moolenaar2020-05-171-1/+1
| | | | | | Problem: Channel test is flaky on FreeBSD. Solution: Set the sockiet TCP_NODELAY option. Adjust expected line count in netbeans test. (Ozaki Kiichi, closes #6097)
* patch 8.2.0750: netbeans test is a bit flakyv8.2.0750Bram Moolenaar2020-05-131-5/+4
| | | | | Problem: Netbeans test is a bit flaky. Solution: Allow for standard sign to be defined. Use WaitForAssert().
* patch 8.2.0599: Netbeans interface insufficiently testedv8.2.0599Bram Moolenaar2020-04-191-22/+644
| | | | | Problem: Netbeans interface insufficiently tested. Solution: Add more tests. (Yegappan Lakshmanan, closes #5921)
* patch 8.2.0156: various typos in source files and testsv8.2.0156Bram Moolenaar2020-01-261-1/+1
| | | | | Problem: Various typos in source files and tests. Solution: Fix the typos. (Emir Sari, closes #5532)
* patch 8.1.1544: some balloon tests don't run when they canv8.1.1544Bram Moolenaar2019-06-151-4/+3
| | | | | | | 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-3/+2
| | | | | Problem: Tests are silently skipped. Solution: Throw an exception for skipped tests in more places.
* patch 8.1.0549: netbeans test depends on README.txt contentsv8.1.0549Bram Moolenaar2018-11-261-3/+5
| | | | | Problem: Netbeans test depends on README.txt contents. Solution: Use a generated file instead.
* patch 8.0.1249: no error when WaitFor() gets an invalid wrong expressionv8.0.1249Bram Moolenaar2017-11-021-0/+4
| | | | | | Problem: No error when WaitFor() gets an invalid wrong expression. Solution: Do not ignore errors in evaluationg the expression. Fix places where the expression was wrong.
* patch 8.0.1245: when WaitFor() has a wrong expression it just waits a secondv8.0.1245Bram Moolenaar2017-11-021-1/+1
| | | | | | | Problem: When WaitFor() has a wrong expression it just waits a second, which goes unnoticed. (James McCoy) Solution: When WaitFor() times out throw an exception. Fix places where the expression was wrong.
* patch 8.0.0024v8.0.0024Bram Moolenaar2016-10-091-0/+1
| | | | | | Problem: When the netbeans channel closes, "DETACH" is put in the output part. (Ozaki Kiichi) Solution: Write "DETACH" in the socket part.
* patch 7.4.2351v7.4.2351Bram Moolenaar2016-09-091-4/+4
| | | | | Problem: Netbeans test fails when run from unpacked MS-Windows sources. Solution: Open README.txt instead of Makefile.
* patch 7.4.2271v7.4.2271Bram Moolenaar2016-08-271-1/+1
| | | | | Problem: Netbeans test doesn't read settings from file. Solution: Use "-Xnbauth".
* patch 7.4.2108v7.4.2108Bram Moolenaar2016-07-271-0/+1
| | | | | Problem: Netbeans test is flaky. Solution: Wait for the cursor to be positioned.
* patch 7.4.2079v7.4.2079Bram Moolenaar2016-07-201-2/+4
| | | | | Problem: Netbeans test fails on non-Unix systems. Solution: Only do the permission check on Unix systems.
* patch 7.4.2041v7.4.2041Bram Moolenaar2016-07-151-0/+25
| | | | | Problem: Netbeans file authentication not tested. Solution: Add a test.
* patch 7.4.2039v7.4.2039Bram Moolenaar2016-07-151-0/+51
Problem: The Netbeans integration is not tested. Solution: Add a first Netbeans test.