summaryrefslogtreecommitdiffstats
path: root/src/testdir/test_sort.vim
AgeCommit message (Collapse)Author
2023-03-09patch 9.0.1396: sort(list, 'N') does not work in Vim9 script contextv9.0.1396Bram Moolenaar
Problem: sort(list, 'N') does not work in Vim9 script context. Solution: Convert string to number without giving an error. (closes #12061)
2022-10-10patch 9.0.0719: too many delete() calls in testsv9.0.0719Bram Moolenaar
Problem: Too many delete() calls in tests. Solution: Use deferred delete where possible.
2022-09-17patch 9.0.0491: no good reason to build without the float featurev9.0.0491Bram Moolenaar
Problem: No good reason to build without the float feature. Solution: Remove configure check for float and "#ifdef FEAT_FLOAT".
2021-12-22patch 8.2.3871: list.c contains code for dict and blobv8.2.3871Yegappan Lakshmanan
Problem: List.c contains code for dict and blob. Solution: Refactor to put code where it belongs. (Yegappan Lakshmanan, closes #9386)
2021-09-19patch 8.2.3449: sort fails if the sort compare function returns 999v8.2.3449Yasuhiro Matsumoto
Problem: Sort fails if the sort compare function returns 999. Solution: Adjust value to -1 / 0 / 1. (Yasuhiro Matsumoto, closes #8884)
2021-01-03patch 8.2.2287: sort test fails when locale is French Canadianv8.2.2287Bram Moolenaar
Problem: Sort test fails when locale is French Canadian. Solution: Expect a different sort order. (Dominique Pellé, closes #7609)
2021-01-03patch 8.2.2286: sort test fails when locale is Canadian Englishv8.2.2286Bram Moolenaar
Problem: Sort test fails when locale is Canadian English. (Neil H Watson) Solution: Expect a different sort order. (closes #7609)
2020-12-18patch 8.2.2160: various typosv8.2.2160Bram Moolenaar
Problem: Various typos. Solution: Fix spelling mistakes. (closes #7494)
2020-11-03patch 8.2.1946: sort() with NULL string not testedv8.2.1946Bram Moolenaar
Problem: sort() with NULL string not tested. Solution: Add a test. use v:collate. (Dominique Pellé, closes #7247)
2020-11-01patch 8.2.1935: sort test fails on Macv8.2.1935Bram Moolenaar
Problem: Sort test fails on Mac. Solution: Disable the sort test with locale on Mac.
2020-11-01patch 8.2.1933: cannot sort using locale orderingv8.2.1933Bram Moolenaar
Problem: Cannot sort using locale ordering. Solution: Add a flag for :sort and sort() to use the locale. (Dominique Pellé, closes #7237)
2020-09-23patch 8.2.1736: failure to compile a pattern not tested muchv8.2.1736Bram Moolenaar
Problem: Failure to compile a pattern not tested much. Solution: Add tests where a pattern fails to compile. (Yegappan Lakshmanan, closes #7004)
2020-08-12patch 8.2.1432: various inconsistencies in test filesv8.2.1432Bram Moolenaar
Problem: Various inconsistencies in test files. Solution: Add modelines where they were missing. Use Check commands instead of silently skipping over tests. Adjust indents and comments. (Ken Takata, closes #6695)
2020-04-20patch 8.2.0612: Vim9: no check for space before #commentv8.2.0612Bram Moolenaar
Problem: Vim9: no check for space before #comment. Solution: Add space checks.
2020-04-20patch 8.2.0610: some tests are still old stylev8.2.0610Bram Moolenaar
Problem: Some tests are still old style. Solution: Convert to new style tests. (Yegappan Lakshmanan, closes #5957)
2020-02-17patch 8.2.0271: the "num64" feature is available everywherev8.2.0271Bram Moolenaar
Problem: The "num64" feature is available everywhere and building without it causes problems. Solution: Graduage the "num64" feature. (James McCoy, closes #5650)
2020-02-11patch 8.2.0243: insufficient code coverage for ex_docmd.c functionsv8.2.0243Bram Moolenaar
Problem: Insufficient code coverage for ex_docmd.c functions. Solution: Add more tests. (Yegappan Lakshmanan, closes #5618)
2020-02-05patch 8.2.0212: missing search/substitute pattern hardly testedv8.2.0212Bram Moolenaar
Problem: Missing search/substitute pattern hardly tested. Solution: Add test_clear_search_pat() and tests. (Yegappan Lakshmanan, closes #5579)
2020-01-30patch 8.2.0183: tests fail when the float feature is disabledv8.2.0183Bram Moolenaar
Problem: Tests fail when the float feature is disabled. Solution: Skip tests that don't work without float support.
2020-01-29patch 8.2.0174: various commands not completely testedv8.2.0174Bram Moolenaar
Problem: Various commands not completely tested. Solution: Add more test cases. (Yegappan Lakshmanan, closes #5551)
2019-02-20patch 8.1.0959: sorting large numbers is not testedv8.1.0959Bram Moolenaar
Problem: Sorting large numbers is not tested and does not work properly. Solution: Add test. Fix comparing lines with and without a number. (Dominique Pelle, closes #4017)
2018-09-21patch 8.1.0416: sort doesn't report deleted linesv8.1.0416Bram Moolenaar
Problem: Sort doesn't report deleted lines. Solution: Call msgmore(). (Christian Brabandt, closes #3454)
2018-06-28patch 8.1.0120: buffer 'modified' set even when :sort has no changesv8.1.0120Bram Moolenaar
Problem: Buffer 'modified' set even when :sort has no changes. Solution: Only set 'modified' when lines are moved. (Jason Franklin)
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)
2016-03-01patch 7.4.1468v7.4.1468Bram Moolenaar
Problem: Sort test doesn't test with "1" argument. Solution: Also test ignore-case sorting. (Yasuhiro Matsumoto)
2016-02-29patch 7.4.1464v7.4.1464Bram Moolenaar
Problem: When the argument of sort() is zero or empty it fails. Solution: Make zero work as documented. (suggested by Yasuhiro Matsumoto)
2016-02-22patch 7.4.1397v7.4.1397Bram Moolenaar
Problem: Sort test fails on MS-Windows. Solution: Correct the compare function.
2016-02-22patch 7.4.1394v7.4.1394Bram Moolenaar
Problem: Can't sort inside a sort function. Solution: Use a struct to store the sort parameters. (Jacob Niehus)
2016-01-19patch 7.4.1143v7.4.1143Bram Moolenaar
Problem: Can't sort on floating point numbers. Solution: Add the "f" flag to ":sort". (Alex Jakushev) Also add the "f" flag to sort().
2015-12-03patch 7.4.951v7.4.951Bram Moolenaar
Problem: Sorting number strings does not work as expected. (Luc Hermitte) Solution: Add the 'N" argument to sort()