| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
| |
Problem: Startup test fails.
Solution: Adjust expected values for deleted lines.
|
|
|
|
|
| |
Problem: Mouse codes not tested sufficiently.
Solution: Add more tests for mouse codes. (closes #6436)
|
|
|
|
|
| |
Problem: Removed more than dead code.
Solution: Put back the decrement.
|
|
|
|
|
|
| |
Problem: Vim9: crash in expr test when run in the GUI.
Solution: Break out of loop over hashtab also when function got removed and
added.
|
|
|
|
|
| |
Problem: Vim9: crash in expr test when run in the GUI.
Solution: Temporarily comment out two test lines.
|
|
|
|
|
| |
Problem: Vim9: && and || work different when not compiled.
Solution: Keep the value.
|
|
|
|
|
| |
Problem: Vim9: true and false not recognized in Vim9 script.
Solution: Recognize true and false.
|
|
|
|
|
| |
Problem: Vim9: crash when calling a closure from a builtin function.
Solution: Use the current execution context. (closes #6441)
|
|
|
|
|
| |
Problem: Vim9: crash when passing number as dict key.
Solution: Check key type to be string. (closes #6449)
|
|
|
|
|
| |
Problem: Vim9: cannot disassemble a lambda function.
Solution: Recognize "<lambda>123" as a function name.
|
|
|
|
|
| |
Problem: Not all assert functions are fully tested.
Solution: Test more assert functions.
|
|
|
|
|
| |
Problem: Terminal2 test sometimes hangs in the GUI on Travis.
Solution: Move test function to terminal3 to see if the problem moves too.
|
|
|
|
|
| |
Problem: Clientserver test still fails on MS-Windows.
Solution: Expect a different error message.
|
|
|
|
|
| |
Problem: Clientserver test fails on MS-Windows.
Solution: Expect a different error message.
|
|
|
|
|
| |
Problem: Test failure because shell prompt differs.
Solution: Set the shell prompt.
|
|
|
|
|
| |
Problem: Terminal window not redrawn when dragging a popup window over it.
Solution: Redraw terminal window. (fixes #6438)
|
|
|
|
|
| |
Problem: Lua test fails with older Lua version.
Solution: Adjust expected error messages. (closes #6444)
|
|
|
|
|
| |
Problem: Vim9: crash when function calls itself.
Solution: Add status UF_COMPILING. (closes #6441)
|
|
|
|
|
| |
Problem: Vim9: line continuation in lambda doesn't always work.
Solution: Do not use a local evalarg unless there isn't one. (closes #6439)
|
|
|
|
|
|
| |
Problem: Memory leak with invalid json input.
Solution: Free all keys at the end. (Dominique Pellé, closes #6443,
closes #6442)
|
|
|
|
|
| |
Problem: Terminal2 test sometimes hangs in the GUI on Travis.
Solution: Disable Test_zz2_terminal_guioptions_bang() for now.
|
|
|
|
|
| |
Problem: Some other tests fail.
Solution: Adjust tests for different assert_fails() behavior.
|
|
|
|
|
|
| |
Problem: Some tests fail.
Solution: Adjust tests for different assert_fails() behavior. Remove unused
variable.
|
|
|
|
|
|
| |
Problem: assert_fails() checks the last error message.
Solution: Check the first error, it is more relevant. Fix all the tests
that rely on the old behavior.
|
|
|
|
|
| |
Problem: Vim9: no check for whitespace after comma in lambda.
Solution: Give error if white space is missing.
|
|
|
|
|
| |
Problem: Json code not fully tested.
Solution: Add more test coverage. (Dominique Pellé, closes #6433)
|
|
|
|
|
| |
Problem: Test_termwinscroll() sometimes hangs in the GUI.
Solution: Skip the test in the GUI.
|
|
|
|
|
|
|
| |
Problem: Vim9: filter function recognized as command modifier, leading to a
crash.
Solution: Clear cmdmod after freeing items. Do not recognize a command
modifier followed by non-white space. (closes #6434)
|
|
|
|
|
|
| |
Problem: Terminal2 test sometimes hangs in the GUI.
Solution: Move some tests to other files to further locate the problem.
Set the GUI to a fixed screen size.
|
|
|
|
|
| |
Problem: Vim9: not enough type checking in Vim9 script.
Solution: Use same type checking as in a :def function.
|
|
|
|
|
| |
Problem: Vim9: Cannot split a line before ".member".
Solution: Check for ".member" after line break.
|
|
|
|
|
| |
Problem: No test for the "recording @x" message.
Solution: Add a test. (Dominique Pellé, closes #6427)
|
|
|
|
|
| |
Problem: Cursor off by one with block paste while 'virtualedit' is "all".
Solution: Adjust condition. (Hugo Gualandi, closes #6430)
|
|
|
|
|
| |
Problem: Vim9: builtin function method call only supports first argument.
Solution: Shift arguments when needed. (closes #6305, closes #6419)
|
|
|
|
|
| |
Problem: Insufficient testing for the Tcl interface.
Solution: Add more tests. (Yegappan Lakshmanan, closes #6423)
|
|
|
|
|
| |
Problem: Vim9: no error for missing space after a comma.
Solution: Check for white space.
|
|
|
|
|
| |
Problem: Vim9: dict.name is not recognized as an expression.
Solution: Recognize ".name". (closes #6418)
|
|
|
|
|
| |
Problem: Vim9: No error for invalid command in compiled function.
Solution: Handle CMD_SIZE.
|
|
|
|
|
| |
Problem: Vim9: cannot handle line break inside lambda.
Solution: Pass the compilation context through. (closes #6407, closes #6409)
|
|
|
|
|
|
| |
Problem: Vim9: crash when using imported function.
Solution: Check for a function type. Set the script context when calling a
function. (closes #6412)
|
|
|
|
|
| |
Problem: Vim9: script test fails on some systems.
Solution: Return proper value from Compare().
|
|
|
|
|
|
| |
Problem: Vim9: function reference is missing script prefix.
Solution: Use the actual function name instead of the name searched for in
the script context. (closes #6412)
|
|
|
|
|
| |
Problem: Insufficient test coverage for Python.
Solution: Add more test cases. (Yegappan Lakshmanan, closes #6415)
|
|
|
|
|
|
| |
Problem: ml_get error when using Python. (Yegappan Lakshmanan)
Solution: Check the line number is not out of range. Call "Check" with
"fromObj" instead of "from".
|
|
|
|
|
| |
Problem: Vim9: :eval command not handled properly.
Solution: Compile the :eval command. (closes #6408)
|
|
|
|
|
| |
Problem: :confirm may happen in cooked mode. (Jason Franklin)
Solution: Switch to raw mode before prompting. (Brandon Pfeifer)
|
|
|
|
|
|
| |
Problem: Not enough testing for Python.
Solution: Add more tests. Fix uncovered problems. (Yegappan Lakshmanan,
closes #6392)
|
|
|
|
|
| |
Problem: Vim9: "for" only accepts a list at compile time.
Solution: Also accept a list at runtime.
|
|
|
|
|
| |
Problem: Vim9: return type of reverse() is any.
Solution: Use the type of the first argument.
|
|
|
|
|
| |
Problem: Vim9: return type of remove() is any.
Solution: Use the member type of the first argument, if known.
|