summaryrefslogtreecommitdiff
path: root/src/testdir/screendump.vim
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.2.0402: setting local instead of global flagv8.2.0402Bram Moolenaar2020-03-181-1/+1
| | | | | Problem: Setting local instead of global flag. Solution: Prepend "g:" to "test_is_flaky".
* patch 8.2.0400: not all tests using a terminal are in the list of flaky testsv8.2.0400Bram Moolenaar2020-03-181-0/+3
| | | | | Problem: Not all tests using a terminal are in the list of flaky tests. Solution: Introduce the test_is_flaky flag.
* patch 8.1.1955: tests contain typosv8.1.1955Bram Moolenaar2019-09-011-1/+1
| | | | | Problem: Tests contain typos. Solution: Correct the typos. (Dominique Pelle)
* patch 8.1.1581: shared functions for testing are disorganisedv8.1.1581Bram Moolenaar2019-06-231-90/+3
| | | | | Problem: Shared functions for testing are disorganised. Solution: Group finctions in script files. (Ozaki Kiichi, closes #4573)
* patch 8.1.1556: command for failing screenshot does not include directoryv8.1.1556Bram Moolenaar2019-06-161-2/+2
| | | | | | Problem: The command displayed to show a failing screenshot does not include the "testdir" directory. Solution: Prefix the directory name so that it can be copy-pasted.
* patch 8.1.1242: no cmdline redraw when tabpages have different 'cmdheight'v8.1.1242Bram Moolenaar2019-05-011-1/+3
| | | | | | Problem: No cmdline redraw when tabpages have different 'cmdheight'. Solution: redraw the command line when 'cmdheight' changes when switching tabpages. (closes #4321)
* patch 8.1.1169: writing coverage info in a separate dir is not neededv8.1.1169Bram Moolenaar2019-04-131-4/+0
| | | | | Problem: Writing coverage info in a separate dir is not needed. Solution: Revert the changes to use a separate directory.
* patch 8.1.1168: not all screen update code of terminal is executed in testsv8.1.1168Bram Moolenaar2019-04-131-0/+4
| | | | | | Problem: Not all screen update code of the terminal window is executed in tests. Solution: Redraw before taking a screenshot.
* patch 8.1.1162: incorrect coverage information; typo in color namev8.1.1162Bram Moolenaar2019-04-131-1/+9
| | | | | | Problem: Incorrect coverage information; typo in color name. Solution: Fix the typo. Set environment variables to have a nested Vim write the coverage info in another directory.
* patch 8.1.1129: when making a new screendump test have to create the filev8.1.1129Bram Moolenaar2019-04-061-8/+17
| | | | | | Problem: When making a new screendump test have to create the file. Solution: Continue creating the failed screendump, so it can be moved once it is correct.
* patch 8.1.1080: when a screendump test fails, moving the file is a hasslev8.1.1080Bram Moolenaar2019-03-301-1/+10
| | | | | | | | Problem: When a screendump test fails, moving the file is a hassle. Solution: Instead of appending ".failed" to the file name, keep the same file name but put the screendump in the "failed" directory. Then the file name only needs to be typed once when moving a screendump.
* patch 8.1.0964: cannot see in CI why a screenshot test failedv8.1.0964Bram Moolenaar2019-02-211-1/+14
| | | | | Problem: Cannot see in CI why a screenshot test failed. Solution: Add info about the failure.
* patch 8.1.0834: GUI may wait too long before dealing with messagesv8.1.0834Bram Moolenaar2019-01-271-0/+4
| | | | | | | Problem: GUI may wait too long before dealing with messages. Returning early may cause a mapping to time out. Solution: Use the waiting loop from Unix also for the GUI. (closes #3817, closes #3824)
* patch 8.1.0562: parsing of 'diffopt' is slightly wrongv8.1.0562Bram Moolenaar2018-12-041-2/+3
| | | | | | Problem: Parsing of 'diffopt' is slightly wrong. Solution: Fix the parsing and add a test. (Jason Franklin, Christian Brabandt)
* patch 8.1.0359: no clue what test failed when using a screendump twicev8.1.0359Bram Moolenaar2018-09-091-3/+11
| | | | | Problem: No clue what test failed when using a screendump twice. Solution: Add an extra argument to VerifyScreenDump().
* patch 8.1.0033: keys to stop Vim in terminal are wrongv8.1.0033Bram Moolenaar2018-06-041-1/+1
| | | | | Problem: Keys to stop Vim in terminal are wrong. (Marius Gedminas) Solution: Move ":" to before CTRL-U.
* patch 8.1.0030: stoping Vim running in a terminal may not workv8.1.0030Bram Moolenaar2018-06-031-1/+5
| | | | | Problem: Stoping Vim running in a terminal may not work. Solution: Instead of sending <Esc> send CTRL-O.
* patch 8.1.0027: difficult to make a plugin that feeds a line to a jobv8.1.0027Bram Moolenaar2018-06-031-14/+15
| | | | | Problem: Difficult to make a plugin that feeds a line to a job. Solution: Add the nitial code for the "prompt" buftype.
* patch 8.0.1794: duplicate term options after renamingv8.0.1794Bram Moolenaar2018-05-051-1/+1
| | | | | Problem: Duplicate term options after renaming. Solution: Remove the old names 'termkey', 'termsize' and 'terminalscroll'.
* patch 8.0.1771: in tests, when WaitFor() fails it doesn't say whyv8.0.1771Bram Moolenaar2018-04-281-4/+10
| | | | | Problem: In tests, when WaitFor() fails it doesn't say why. (James McCoy) Solution: Add WaitForAssert(), which produces an assert error when it fails.
* patch 8.0.1721: no test for using the 'termsize' optionv8.0.1721Bram Moolenaar2018-04-151-1/+6
| | | | | Problem: No test for using the 'termsize' option. Solution: Add a test.
* patch 8.0.1697: various tests are still a bit flakyv8.0.1697Bram Moolenaar2018-04-111-3/+3
| | | | | Problem: Various tests are still a bit flaky. Solution: Increase the default wait time to five seconds.
* patch 8.0.1694: terminal API test is a bit flakyv8.0.1694Bram Moolenaar2018-04-101-1/+1
| | | | | Problem: Terminal API test is a bit flaky. Solution: Wait longer for Vim to stop.
* patch 8.0.1667: terminal window tests are flakyv8.0.1667Bram Moolenaar2018-04-061-2/+3
| | | | | Problem: Terminal window tests are flaky. Solution: Increase the waiting time for Vim to start.
* patch 8.0.1653: screen dump is made too soonv8.0.1653Bram Moolenaar2018-03-291-0/+3
| | | | | Problem: Screen dump is made too soon. Solution: Wait until the ruler is displayed. (Ozaki Kiichi, closes #2755)
* patch 8.0.1644: terminal API tests still failv8.0.1644Bram Moolenaar2018-03-251-8/+8
| | | | | | Problem: Terminal API tests still fail. Solution: Explicitly set 'title' in the terminal job. (Ozaki Kiichi, closes #2750)
* patch 8.0.1642: running Vim in terminal fails with two windowsv8.0.1642Bram Moolenaar2018-03-251-2/+8
| | | | | Problem: Running Vim in terminal fails with two windows. Solution: Pass the number of rows to RunVimInTerminal().
* patch 8.0.1641: job in terminal can't communicate with Vimv8.0.1641Bram Moolenaar2018-03-251-2/+2
| | | | | Problem: Job in terminal can't communicate with Vim. Solution: Add the terminal API.
* patch 8.0.1638: popup test fails depending on environment variablev8.0.1638Bram Moolenaar2018-03-241-0/+7
| | | | | Problem: Popup test fails depending on environment variable. Solution: Reset $COLORFGBG when running Vim in a terminal. (closes #2693)
* patch 8.0.1631: testing with Vim running in terminal is a bit flakyv8.0.1631Bram Moolenaar2018-03-231-0/+4
| | | | | Problem: Testing with Vim running in terminal is a bit flaky. Solution: Delete any .swp file so that later tests don't fail.
* patch 8.0.1540: popup menu positioning fails with longer stringv8.0.1540Bram Moolenaar2018-02-241-1/+1
| | | | | | Problem: Popup menu positioning fails with longer string. Solution: Only align with right side of window when width is less than 'pumwidth' (closes #2661)
* patch 8.0.1539: no test for the popup menu positioningv8.0.1539Bram Moolenaar2018-02-241-3/+17
| | | | | Problem: No test for the popup menu positioning. Solution: Add a screendump test for the popup menu.
* patch 8.0.1535: C syntax test still fails when using gvimv8.0.1535Bram Moolenaar2018-02-241-3/+3
| | | | | Problem: C syntax test still fails when using gvim. Solution: Clear Normal cterm highlighting instead of setting it.
* patch 8.0.1534: C syntax test fails when using gvimv8.0.1534Bram Moolenaar2018-02-241-1/+2
| | | | | | Problem: C syntax test fails when using gvim Solution: Force running in a terminal. Check that 'background' is correct even when $COLORFGBG is set.
* patch 8.0.1526: no test using a screen dump yetv8.0.1526Bram Moolenaar2018-02-201-0/+65
Problem: No test using a screen dump yet. Solution: Add a test for C syntax highlighting. Add helper functions.