summaryrefslogtreecommitdiffstats
path: root/src/testdir/Make_amiga.mak
AgeCommit message (Collapse)Author
2020-08-14patch 8.2.1449: some test makefiles delete files that are not generatedv8.2.1449Bram Moolenaar
Problem: Some test makefiles delete files that are not generated. Solution: Remove the deletion commands.
2020-08-13patch 8.2.1439: tiny and small builds have no test coveragev8.2.1439Bram Moolenaar
Problem: Tiny and small builds have no test coverage. Solution: Restore tests that do not depend on the +eval feature. (Ken Takata, closes #6696)
2020-08-11patch 8.2.1420: test 49 is old stylev8.2.1420Bram Moolenaar
Problem: Test 49 is old style. Solution: Convert remaining parts to new style. Remove obsolete items. (Yegappan Lakshmanan, closes #6683)
2020-07-27patch 8.2.1305: some tests are still old stylev8.2.1305Bram Moolenaar
Problem: Some tests are still old style. Solution: Convert tests 52 and 70 to new style. (Yegappan Lakshmanan, closes #6544) Fix error in FinishTesting().
2019-07-05patch 8.1.1637: after running tests and clean the XfakeHOME directory remainsv8.1.1637Bram Moolenaar
Problem: After running tests and clean the XfakeHOME directory remains. Solution: Use "rm -rf". (Hirohito Higashi)
2019-04-25patch 8.1.1203: some autocmd tests are old stylev8.1.1203Bram Moolenaar
Problem: Some autocmd tests are old style. Solution: Turn the tests into new style. (Yegappan Lakshmanan, closes #4295)
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.
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)
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)
2016-02-28patch 7.4.1453v7.4.1453Bram Moolenaar
Problem: Missing --not-a-term. Solution: Add the argument.
2016-01-16patch 7.4.1111v7.4.1111Bram Moolenaar
Problem: test_expand fails on MS-Windows. Solution: Always use forward slashes. Remove references to test27.
2015-12-28patch 7.4.988v7.4.988Bram Moolenaar
Problem: Default test target is test49.out. Solution: Add a build rule before including Make_all.mak.
2015-12-28patch 7.4.983v7.4.983Bram Moolenaar
Problem: Executing one test after "make testclean" doesn't work. Solution: Add a dependency on test1.out.
2015-12-28patch 7.4.982v7.4.982Bram Moolenaar
Problem: Keeping the list of tests updated is a hassle. Solution: Move the list to a separate file, so that it only needs to be udpated in one place.
2015-12-28patch 7.4.980v7.4.980Bram Moolenaar
Problem: Tests for :cdo, :ldo, etc. are outdated. Solution: Add new style tests for these commands. (Yegappan Lakshmanan)
2015-12-03patch 7.4.952v7.4.952Bram Moolenaar
Problem: 'lispwords' is tested in the old way. Solution: Make a new style test for 'lispwords'.
2015-11-28patch 7.4.943v7.4.943Bram Moolenaar
Problem: Tests are not run. Solution: Add test_writefile to makefiles. (Ken Takata)
2015-11-24patch 7.4.941v7.4.941Bram Moolenaar
Problem: There is no way to ignore case only for tag searches. Solution: Add the 'tagcase' option. (Gary Johnson)
2015-09-08patch 7.4.858v7.4.858Bram Moolenaar
Problem: It's a bit clumsy to execute a command on a list of matches. Solution: Add the ":ldo", ":lfdo", ":cdo" and ":cfdo" commands. (Yegappan Lakshmanan)
2015-09-01patch 7.4.844v7.4.844Bram Moolenaar
Problem: When '#' is in 'isident' the is# comparator doesn't work. Solution: Don't use vim_isIDc(). (Yasuhiro Matsumoto)
2015-08-11patch 7.4.813v7.4.813Bram Moolenaar
Problem: It is not possible to save and restore character search state. Solution: Add getcharsearch() and setcharsearch(). (James McCoy)
2015-07-21patch 7.4.792v7.4.792Bram Moolenaar
Problem: Can only conceal text by defining syntax items. Solution: Use matchadd() to define concealing. (Christian Brabandt)
2015-07-17patch 7.4.786v7.4.786Bram Moolenaar
Problem: It is not possible for a plugin to adjust to a changed setting. Solution: Add the OptionSet autocommand event. (Christian Brabandt)
2015-07-17patch 7.4.785v7.4.785Bram Moolenaar
Problem: On some systems automatically adding the missing EOL causes problems. Setting 'binary' has too many side effects. Solution: Add the 'fixeol' option, default on. (Pavel Samarkin)
2015-07-10patch 7.4.771v7.4.771Bram Moolenaar
Problem: Search does not handle multi-byte character at the start position correctly. Solution: Take byte size of character into account. (Yukihiro Nakadaira)
2015-06-25patch 7.4.754v7.4.754Bram Moolenaar
Problem: Using CTRL-A in Visual mode does not work well. (Gary Johnson) Solution: Make it increment all numbers in the Visual area. (Christian Brabandt)
2015-06-19patch 7.4.744v7.4.744Bram Moolenaar
Problem: No tests for Ruby and Perl. Solution: Add minimal tests. (Ken Takata)
2015-06-19patch 7.4.741v7.4.741Bram Moolenaar
Problem: When using += with ":set" a trailing comma is not recognized. (Issue 365) Solution: Don't add a second comma. Add a test. (partly by Christian Brabandt)
2015-04-21patch 7.4.710v7.4.710Bram Moolenaar
Problem: It is not possible to make spaces visibible in list mode. Solution: Add the "space" item to 'listchars'. (David Bürgin, issue 350)
2015-03-24updated for version 7.4.680v7.4.680Bram Moolenaar
Problem: CTRL-W in Insert mode does not work well for multi-byte characters. Solution: Use mb_get_class(). (Yasuhiro Matsumoto)
2015-03-13updated for version 7.4.662v7.4.662Bram Moolenaar
Problem: When 'M' is in the 'cpo' option then selecting a text object in parenthesis does not work correctly. Solution: Keep 'M' in 'cpo' when finding a match. (Hirohito Higashi)
2015-02-17updated for version 7.4.634v7.4.634Bram Moolenaar
Problem: Marks are not restored after redo + undo. Solution: Fix the way marks are restored. (Olaf Dabrunz)
2015-01-20updated for version 7.4.588v7.4.588Bram Moolenaar
Problem: ":0argedit foo" puts the new argument in the second place instead of the first. Solution: Adjust the range type. (Ingo Karkat)
2014-12-13updated for version 7.4.549v7.4.549Bram Moolenaar
Problem: Function name not recognized correctly when inside a function. Solution: Don't check for an alpha character.
2014-12-08updated for version 7.4.542v7.4.542Bram Moolenaar
Problem: Using a range for window and buffer commands has a few problems. Cannot specify the type of range for a user command. Solution: Add the -addr argument for user commands. Fix problems. (Marcin Szamotulski)
2014-11-27updated for version 7.4.530v7.4.530Bram Moolenaar
Problem: Many commands take a count or range that is not using line numbers. Solution: For each command specify what kind of count it uses. For windows, buffers and arguments have "$" and "." have a relevant meaning. (Marcin Szamotulski)
2014-10-21updated for version 7.4.487v7.4.487Bram Moolenaar
Problem: ":sign jump" may use another window even though the file is already edited in the current window. Solution: First check if the file is in the current window. (James McCoy)
2014-10-21updated for version 7.4.483v7.4.483Bram Moolenaar
Problem: A 0x80 byte is not handled correctly in abbreviations. Solution: Unescape special characters. Add a test. (Christian Brabandt)
2014-08-16updated for version 7.4.408v7.4.408Bram Moolenaar
Problem: Visual block insert breaks a multi-byte character. Solution: Calculate the position properly. (Yasuhiro Matsumoto)
2014-07-30updated for version 7.4.387v7.4.387Bram Moolenaar
Problem: "4gro" replaces one character then executes "ooo". (Urtica Dioica) Solution: Write the ESC in the second stuff buffer.
2014-07-30updated for version 7.4.386v7.4.386Bram Moolenaar
Problem: When splitting a window the changelist position is wrong. Solution: Copy the changelist position. (Jacob Niehus)
2014-07-23updated for version 7.4.378v7.4.378Bram Moolenaar
Problem: Title of quickfist list is not kept for setqflist(list, 'r'). Solution: Keep the title. Add a test. (Lcd)
2014-07-16updated for version 7.4.370v7.4.370Bram Moolenaar
Problem: Linebreak test fails when encoding is not utf-8. (Danek Duvall) Solution: Split the test in a single byte one and a utf-8 one. (Christian Brabandt)
2014-07-02updated for version 7.4.353v7.4.353Bram Moolenaar
Problem: 'breakindent' doesn't work with the 'list' option. Solution: Make it work. (Christian Brabandt)
2014-06-25updated for version 7.4.338v7.4.338Bram Moolenaar
Problem: Cannot wrap lines taking indent into account. Solution: Add the 'breakindent' option. (many authors, final improvements by Christian Brabandt)
2014-05-29updated for version 7.4.315v7.4.315Bram Moolenaar
Problem: Fixes for computation of topline not tested. Solution: Add test. (Hirohito Higashi)
2014-04-29updated for version 7.4.267v7.4.267Bram Moolenaar
Problem: The '[ mark is in the wrong position after "gq". (Ingo Karkat) Solution: Add the setmark argument to do_join(). (Christian Brabandt)
2014-04-02updated for version 7.4.242v7.4.242Bram Moolenaar
Problem: getreg() does not distinguish between a NL used for a line break and a NL used for a NUL character. Solution: Add another argument to return a list. (ZyX)