Age | Commit message (Collapse) | Author |
|
Problem: Keymap test fails with normal features.
Solution: Bail out if the keymap feature is not supported.
|
|
Problem: Digraph code test coverage is still low.
Solution: Add more tests. (Christian Brabandt)
|
|
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.
|
|
Problem: Digraph tests fails on some systems.
Solution: Run it separately and set 'encoding' early.
|
|
Problem: New digraph test makes testing hang.
Solution: Don't set "nocp".
|
|
Problem: Coverity complains about not restoring a value.
Solution: Restore the value, although it's not really needed. Change return
to jump to cleanup, might leak memory.
|
|
Problem: Not much test coverage for digraphs.
Solution: Add a new style digraph test. (Christian Brabandt)
|
|
Problem: Line numbers in the error list are not always adjusted.
Solution: Set b_has_qf_entry properly. (Yegappan Lakshmanan)
|
|
Problem: When using PERROR() on some systems assert_fails() does not see
the error.
Solution: Make PERROR() always report the error.
|
|
Problem: Netbeans test fails on non-Unix systems.
Solution: Only do the permission check on Unix systems.
|
|
Problem: Running checks in po diretory fails.
Solution: Add colors used in syntax.c to the builtiin color table.
|
|
Problem: Cannot update 'tabline' when a tab was closed.
Solution: Add the TabClosed autocmd event. (partly by Felipe Morales)
|
|
Problem: Syntax error when dict has '>' key.
Solution: Check for endchar. (Ken Takata)
|
|
Problem: No autocommand event to initialize a window or tab page.
Solution: Add WinNew and TabNew events. (partly by Felipe Morales)
|
|
Problem: One more place using a dummy variable.
Solution: Use offsetof(). (Ken Takata)
|
|
Problem: rgb.txt is read for every color name.
Solution: Load rgb.txt once. (Christian Brabandt) Add a test.
|
|
Problem: substitute() does not support a Funcref argument.
Solution: Support a Funcref like it supports a string starting with "\=".
|
|
Problem: The return value of type() is difficult to use.
Solution: Define v:t_ constants. (Ken Takata)
|
|
Problem: Missing change to include file.
Solution: Include the spell header file.
|
|
Problem: spell.c is too big.
Solution: Split it in spell file handling and spell checking.
|
|
Problem: Not all arguments of trunc_string() are tested. Memory access
error when running the message tests.
Solution: Add another test case. (Yegappan Lakshmanan) Make it easy to run
unittests with valgrind. Fix the access error.
|
|
Problem: Compiler warning for char/char_u conversion. (Tony Mechelynck)
Inefficient code.
Solution: Use more lines to fill with spaces. (Nikolai Pavlov) Add type cast.
|
|
Problem: getcompletion() not well tested.
Solution: Add more testing.
|
|
Problem: Compiler warns for uninitialzed variable. (John Marriott)
Solution: Set lnum to the right value.
|
|
Problem: Coverity warns for possible buffer overflow.
Solution: Use vim_strcat() instead of strcat().
|
|
Problem: eval.c is still too big.
Solution: Split off internal functions to evalfunc.c.
|
|
Problem: Using dummy variable to compute struct member offset.
Solution: Use offsetof().
|
|
Problem: qf_init_ext() is too big.
Solution: Move code to qf_parse_line() (Yegappan Lakshmanan)
|
|
Problem: Wrong file name.
Solution: Fix typo.
|
|
Problem: Non-Unix builds fail.
Solution: Update Makefiles for new files.
|
|
Problem: eval.c is too big.
Solution: Move user functions to userfunc.c
|
|
Problem: eval.c is too big.
Solution: Move List functions to list.c
|
|
Problem: Build fails.
Solution: Add missing changes.
|
|
Problem: eval.c is too big.
Solution: Move Dictionary functions to dict.c.
|
|
|
|
|
|
Problem: Wrong part of #ifdef removed.
Solution: Use the right part. (Hirohito Higashi)
|
|
|
|
|
|
be merged then.
|
|
|
|
Problem: Can't run scripttests in the top directory.
Solution: Add targets to the top Makefile.
|
|
Problem: Coverage report is messed up by the unittests.
Solution: Add a separate test target for script tests. Use that when
collecting coverage information.
|
|
Problem: No proper testing of trunc_string().
Solution: Add a unittest for message.c.
|
|
Problem: When using ":vimgrep" may end up with duplicate buffers.
Solution: When adding an error list entry pass the buffer number if possible.
|
|
Problem: There is no way to get a list of the error lists.
Solution: Add ":chistory" and ":lhistory".
|
|
Problem: There is still code and help for unsupported systems.
Solution: Remove the code and text. (Hirohito Higashi)
|
|
Problem: Compiler warning for initializing a struct.
Solution: Initialize in another way. (Anton Lindqvist)
|
|
|
|
Problem: The qf_init_ext() function is too big.
Solution: Refactor it. (Yegappan Lakshmanan)
|