summaryrefslogtreecommitdiffstats
path: root/src/testdir/test_alot_utf8.vim
AgeCommit message (Collapse)Author
2020-10-28patch 8.2.1920: listlbr test fails when run after another testv8.2.1920Bram Moolenaar
Problem: Listlbr test fails when run after another test. Solution: Add test separately to list of test targets.
2020-03-03patch 8.2.0352: FreeBSD: test for sourcing utf-8 is skippedv8.2.0352Bram Moolenaar
Problem: FreeBSD: test for sourcing utf-8 is skipped. Solution: Run the matchadd_conceal test separately to avoid that setting 'term' to "ansi" causes problems for other tests. (Ozaki Kiichi, closes #5721)
2019-01-24patch 8.1.0811: too many #ifdefsv8.1.0811Bram Moolenaar
Problem: Too many #ifdefs. Solution: Graduate FEAT_MBYTE, the final chapter.
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-10-15patch 8.0.1200: tests switch the bell off twicev8.0.1200Bram Moolenaar
Problem: Tests switch the bell off twice. Solution: Don't set 'belloff' in individual tests. (Christian Brabandt)
2017-07-08patch 8.0.0699: checksum tests are not actually runv8.0.0699Bram Moolenaar
Problem: Checksum tests are not actually run. Solution: Add the tests to the list. (Dominique Pelle, closes #1819)
2017-03-12patch 8.0.0446: the ";" command does not work after some charactersv8.0.0446Bram Moolenaar
Problem: The ";" command does not work after characters with a lower byte that is NUL. Solution: Properly check for not having a previous character. (Hirohito Higashi)
2017-03-08patch 8.0.0433: beeps when running testsv8.0.0433Bram Moolenaar
Problem: Quite a few beeps when running tests. Solution: Set 'belloff' for these tests. (Christian Brabandt)
2017-01-28patch 8.0.0250: virtcol() does not work well for multi-byte charactersv8.0.0250Bram Moolenaar
Problem: When virtcol() gets a column that is not the first byte of a multi-byte character the result is unpredictable. (Christian Ludwig) Solution: Correct the column to the first byte of a multi-byte character. Change the utf-8 test to new style.
2016-08-17patch 7.4.2223v7.4.2223Bram Moolenaar
Problem: Buffer overflow when using latin1 character with feedkeys(). Solution: Check for an illegal character. Add a test.
2016-07-21patch 7.4.2086v7.4.2086Bram Moolenaar
Problem: Using the system default encoding makes tests unpredictable. Solution: Always use utf-8 or latin1 in the new style tests. Remove setting encoding and scriptencoding where it is not needed.
2016-04-14patch 7.4.1740v7.4.1740Bram Moolenaar
Problem: syn-cchar defined with matchadd() does not appear if there are no other syntax definitions which matches buffer text. Solution: Check for startcol. (Ozaki Kiichi, haya14busa, closes #757)
2016-04-14patch 7.4.1734v7.4.1734Bram Moolenaar
Problem: Test fails when not using utf-8. Solution: Split test in regularand utf-8 part.
2016-04-03patch 7.4.1700v7.4.1700Bram Moolenaar
Problem: Equivalence classes are not properly tested. Solution: Add tests for multi-byte and latin1. Fix an error. (Owen Leibman)