summaryrefslogtreecommitdiffstats
path: root/src/testdir/Make_all.mak
AgeCommit message (Collapse)Author
2019-03-14patch 8.1.1007: using closure may consume a lot of memoryv8.1.1007Bram Moolenaar
Problem: Using closure may consume a lot of memory. Solution: unreference items that are no longer needed. Add a test. (Ozaki Kiichi, closes #3961)
2019-03-02patch 8.1.0986: rename() is not propertly testedv8.1.0986Bram Moolenaar
Problem: rename() is not propertly tested. Solution: Add tests. (Dominique Pelle, closes #4061)
2019-02-16patch 8.1.0932: Farsi support is outdated and unusedv8.1.0932Bram Moolenaar
Problem: Farsi support is outdated and unused. Solution: Delete the Farsi support.
2019-02-15patch 8.1.0926: no test for :wnext, :wNext and :wpreviousv8.1.0926Bram Moolenaar
Problem: No test for :wnext, :wNext and :wprevious. Solution: Add a test. (Dominique Pelle, closes #3963)
2019-02-08patch 8.1.0881: can execute shell commands in rvim through interfacesv8.1.0881Bram Moolenaar
Problem: Can execute shell commands in rvim through interfaces. Solution: Disable using interfaces in restricted mode. Allow for writing file with writefile(), histadd() and a few others.
2019-01-24patch 8.1.0817: ":=" command is not testedv8.1.0817Bram Moolenaar
Problem: ":=" command is not tested. Solution: Add a test. (Dominique Pelle, closes #3859)
2019-01-24patch 8.1.0815: dialog for file changed outside of Vim not testedv8.1.0815Bram Moolenaar
Problem: Dialog for file changed outside of Vim not tested. Solution: Add a test. Move FileChangedShell test. Add 'L' flag to feedkeys().
2019-01-17patch 8.1.0760: no proper test for using 'termencoding'v8.1.0760Bram Moolenaar
Problem: No proper test for using 'termencoding'. Solution: Add a screendump test. Fix using double width characters in a screendump.
2019-01-12patch 8.1.0735: cannot handle binary datav8.1.0735Bram Moolenaar
Problem: Cannot handle binary data. Solution: Add the Blob type. (Yasuhiro Matsumoto, closes #3638)
2019-01-12patch 8.1.0729: there is a SourcePre autocommand event but not a SourcePostv8.1.0729Bram Moolenaar
Problem: There is a SourcePre autocommand event but not a SourcePost. Solution: Add the SourcePost autocommand event. (closes #3739)
2019-01-11patch 8.1.0724: build for MinGW failsv8.1.0724Bram Moolenaar
Problem: Build for MinGW fails. Solution: Avoid specifying dependencies in included makefile.
2019-01-11patch 8.1.0723: cannot easily run specific test when in src/testdirv8.1.0723Bram Moolenaar
Problem: Cannot run specific test when in src/testdir the same was as in the src directory. Solution: Move build rule to src/testdir/Makefile.
2019-01-11patch 8.1.0721: conceal mode is not sufficiently testedv8.1.0721Bram Moolenaar
Problem: Conceal mode is not sufficiently tested. Solution: Add screendump tests. Check all 'concealcursor' values.
2018-12-13patch 8.1.0579: cannot attach properties to textv8.1.0579Bram Moolenaar
Problem: Cannot attach properties to text. Solution: First part of adding text properties.
2018-11-30patch 8.1.0553: it is not easy to edit a script that was sourcedv8.1.0553Bram Moolenaar
Problem: It is not easy to edit a script that was sourced. Solution: Add a count to ":scriptnames", so that ":script 40" edits the script with script ID 40.
2018-06-30patch 8.1.0132: lua tests are old stylev8.1.0132Bram Moolenaar
Problem: Lua tests are old style. Solution: Convert to new style tests. Improve coverage. (Dominique Pelle, closes #3091)
2018-06-23patch 8.1.0105: all tab stops are the samev8.1.0105Bram Moolenaar
Problem: All tab stops are the same. Solution: Add the variable tabstop feature. (Christian Brabandt, closes #2711)
2018-06-03patch 8.1.0027: difficult to make a plugin that feeds a line to a jobv8.1.0027Bram Moolenaar
Problem: Difficult to make a plugin that feeds a line to a job. Solution: Add the nitial code for the "prompt" buftype.
2018-04-10patch 8.0.1689: no tests for xxdv8.0.1689Bram Moolenaar
Problem: No tests for xxd. Solution: Add a test. (Christian Brabandt)
2018-04-10patch 8.0.1682: auto indenting breaks inserting a blockv8.0.1682Bram Moolenaar
Problem: Auto indenting breaks inserting a block. Solution: Do not check for cursor movement if indent was changed. (Christian Brabandt, closes #2778)
2018-03-11patch 8.0.1595: no autocommand triggered before exitingv8.0.1595Bram Moolenaar
Problem: No autocommand triggered before exiting. Solution: Add the ExitPre autocommand event.
2018-02-13patch 8.0.1514: getting the list of changes is not easyv8.0.1514Bram Moolenaar
Problem: Getting the list of changes is not easy. Solution: Add the getchangelist() function. (Yegappan Lakshmanan, closes #2634)
2018-02-10patch 8.0.1497: getting the jump list requires parsing the output of :jumpsv8.0.1497Bram Moolenaar
Problem: Getting the jump list requires parsing the output of :jumps. Solution: Add getjumplist(). (Yegappan Lakshmanan, closes #2609)
2018-01-31patch 8.0.1447: still too many old style testsv8.0.1447Bram Moolenaar
Problem: Still too many old style tests. Solution: Turn a few tests into new style. (Yegappan Lakshmanan, closes #2509)
2017-12-23patch 8.0.1423: error in return not caught by try/catchv8.0.1423Bram Moolenaar
Problem: Error in return not caught by try/catch. Solution: Call update_force_abort(). (Yasuhiro Matsomoto, closes #2483)
2017-12-11patch 8.0.1387: wordcount test is old stylev8.0.1387Bram Moolenaar
Problem: Wordcount test is old style. Solution: Change into a new style test. (Yegappan Lakshmanan, closes #2434)
2017-12-07patch 8.0.1377: cannot call a dict function in autoloaded dictv8.0.1377Bram Moolenaar
Problem: Cannot call a dict function in autoloaded dict. Solution: Call get_lval() passing the read-only flag.
2017-11-25patch 8.0.1336: cannot use imactivatefunc() unless compiled with +ximv8.0.1336Bram Moolenaar
Problem: Cannot use imactivatefunc() unless compiled with +xim. Solution: Allow using imactivatefunc() when not compiled with +xim. (Yasuhiro Matsumoto, closes #2349)
2017-11-23patch 8.0.1333: some tests are run twicev8.0.1333Bram Moolenaar
Problem: Some tests are run twice. Solution: Invoked most utf8 tests only from test_alot_utf8. (Yegappan Lakshmanan, closes #2369)
2017-11-21patch 8.0.1326: largefile test fails on CI, glob test on MS-Windowsv8.0.1326Bram Moolenaar
Problem: Largefile test fails on CI, glob test on MS-Windows. Solution: Remove largefile test from list of all tests. Don't run Test_glob() on non-unix systems. More cleanup. (Yegappan Lakshmanan, closes #2354)
2017-11-20patch 8.0.1325: more tests are not runv8.0.1325Bram Moolenaar
Problem: More tests are not run. Solution: Add targets to the list of tests. (Yegappan Lakshmanan)
2017-11-19patch 8.0.1322: textformat test isn't runv8.0.1322Bram Moolenaar
Problem: Textformat test isn't run. (Yegappan Lakshmanan) Solution: Add target to the list of tests.
2017-11-16patch 8.0.1302: still too many old style testsv8.0.1302Bram Moolenaar
Problem: Still too many old style tests. Solution: Convert a few more tests to new style. (Yegappan Lakshmanan, closes #2326)
2017-11-05patch 8.0.1271: still too many old style testsv8.0.1271Bram Moolenaar
Problem: Still too many old style tests. Solution: Convert a few more tests to new style. (Yegappan Lakshmanan, closes #2290)
2017-11-02patch 8.0.1253: still too many old style testsv8.0.1253Bram Moolenaar
Problem: Still too many old style tests. Solution: Convert a few more tests to new style. (Yegappan Lakshmanan, closes #2272)
2017-10-26patch 8.0.1221: still too many old style testsv8.0.1221Bram Moolenaar
Problem: Still too many old style tests. Solution: Convert a few more tests to new style. (Yegappan Lakshmanan, closes #2256)
2017-10-22patch 8.0.1209: still too many old style testsv8.0.1209Bram Moolenaar
Problem: Still too many old style tests. Solution: Convert a few more tests to new style. (Yegappan Lakshmanan, closes #2230)
2017-10-12patch 8.0.1186: still quite a few old style testsv8.0.1186Bram Moolenaar
Problem: Still quite a few old style tests. Solution: Convert old to new style tests. (Yegappan Lakshmanan) Avoid ringing the bell while running tests.
2017-09-28patch 8.0.1158: still old style testsv8.0.1158Bram Moolenaar
Problem: Still old style tests. Solution: Convert serveral tests to new style. (Yegappan Lakshmanan)
2017-09-23patch 8.0.1140: still old style testsv8.0.1140Bram Moolenaar
Problem: Still old style tests. Solution: Convert two tests to new style. (Yegappan Lakshmanan)
2017-09-17patch 8.0.1123: cannot define a toolbar for a windowv8.0.1123Bram Moolenaar
Problem: Cannot define a toolbar for a window. Solution: Add a window-local toolbar.
2017-09-09patch 8.0.1083: leaking memory in input part of channelv8.0.1083Bram Moolenaar
Problem: Leaking memory in input part of channel. Solution: Clear the input part of channel. Free the entry. Move failing command test to a separate file to avoid bogus leak reports clouding tests that should not leak.
2017-08-30patch 8.0.1022: test 80 is old stylev8.0.1022Bram Moolenaar
Problem: Test 80 is old style. Solution: Turn it into a new style test. (Yegappan Lakshmanan)
2017-08-29patch 8.0.1012: MS-Windows: problem with $HOME when is was set internallyv8.0.1012Bram Moolenaar
Problem: MS-Windows: Problem with $HOME when is was set internally. Solution: Only use the $HOME default internally. (Yasuhiro Matsumoto, closes #2013)
2017-08-07patch 8.0.0890: still many old style testsv8.0.0890Bram Moolenaar
Problem: Still many old style tests. Solution: Convert several tests to new style. (Yegappan Lakshmanan)
2017-08-04patch 8.0.0861: still many old style testsv8.0.0861Bram Moolenaar
Problem: Still many old style tests. Solution: Convert several tests to new style. (Yegappan Lakshmanan)
2017-07-29patch 8.0.0804: terminal window functions not yet implementedv8.0.0803Bram Moolenaar
Problem: Terminal window functions not yet implemented. Solution: Implement several functions. Add a first test. (Yasuhiro Matsumoto, closes #1871)
2017-07-23patch 8.0.0762: ml_get error with :psearch in buffer without a namev8.0.0762Bram Moolenaar
Problem: ml_get error with :psearch in buffer without a name. (Dominique Pelle) Solution: Use the buffer number instead of the file name. Check the cursor position.
2017-07-19patch 8.0.0736: OptionSet not triggered when entering diff modev8.0.0736Bram Moolenaar
Problem: The OptionSet autocommand event is not triggered when entering diff mode. Solution: use set_option_value() instead of setting the option directly. Change the tests from old to new style. (Christian Brabandt)
2017-07-16patch 8.0.0724: the message for yanking doesn't indicate the registerv8.0.0724Bram Moolenaar
Problem: The message for yanking doesn't indicate the register. Solution: Show the register name in the "N lines yanked" message. (Lemonboy, closes #1803, closes #1809)