| Commit message (Collapse) | Author | Age |
|
|
|
|
|
|
|
|
|
|
| |
Reasoning:
1. gtest is better then something like utfTerminal, yet it is way too verbose.
2. gtest cannot be configured to show colors always.
3. Actually I am going to add a CMake target which will allow running tests
(especially, functional tests) in parallel, but this is not going to work
well with any of the default output handlers. Build in this case must be more
or less silent, yet debuggable. New handler does not support this in this
commit though.
|
|\
| |
| | |
Rename execute() function to feed_command()
|
| |\ |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | | |
It looks like Neovim has a bug: if `startinsert` is called using `command()`
then `-- TERMINAL --` gets replaced with `-- --` (and also a cursor appears).
|
| | |
| | |
| | | |
Another test where bug was hidden by execute().
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | | |
For some reason it had a number of not working bwipeout! commands. execute()
successfully hid the failures, command() is not that permissive.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Hope this will make people using feed_command less likely: this hides bugs.
Already found at least two:
1. msgpackparse() will show internal error: hash_add() in case of duplicate
keys, though it will still work correctly. Currently silenced.
2. ttimeoutlen was spelled incorrectly, resulting in option not being set when
expected. Test was still functioning somehow though. Currently fixed.
|
| | |
| | |
| | |
| | |
| | | |
Note: typo, ttimeoutlen not set ever.
Mention @hardenedapple
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | | |
It was not testing anything actually: the `e yy` command simply failed because
of unsaved changes, BufLeave never run thus.
|
|\ \ \
| |_|/
|/| | |
vim-patch:8.0.0377,8.0.0378,8.0.0322,8.0.0376
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Problem: Size computations in spell file reading are not exactly right.
Solution: Make "len" a "long" and check with LONG_MAX.
https://github.com/vim/vim/commit/6d3c8586fc81b022e9f06c611b9926108fb878c7
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Problem: Possible overflow with spell file where the tree length is
corrupted.
Solution: Check for an invalid length (suggested by shqking)
https://github.com/vim/vim/commit/399c297aa93afe2c0a39e2a1b3f972aebba44c9d
CVE-2017-5953
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Problem: Another possible overflow when reading corrupted undo file.
Solution: Check if allocated size is not too big. (King)
https://github.com/vim/vim/commit/0c8485f0e4931463c0f7986e1ea84a7d79f10c75
CVE-2017-6350
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Problem: Possible overflow when reading corrupted undo file.
Solution: Check if allocated size is not too big. (King)
https://github.com/vim/vim/commit/3eb1637b1bba19519885dd6d377bd5596e91d22c
CVE-2017-6349
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Avoids this error:
./test/helpers.lua:27: cannot open ./Xtest-tmpdir/nvimfqH9dL: No such file or directory
stack traceback:
./test/helpers.lua:27: in function 'glob'
./test/helpers.lua:195: in function 'check_cores'
./test/functional/helpers.lua:628: in function <./test/functional/helpers.lua:626>
|
| | |
| | |
| | | |
Necessary argument (EXCLUDE_FROM_ALL) only appears in 3.1.0.
|
|/ / |
|
|\ \
| | |
| | | |
unittests: Force GC, fix GC failures in typval_spec
|
| | | |
|
| | |
| | |
| | | |
We do not have non-cmake build options, cmake always does configure_file.
|
| | | |
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | | |
Not sure whether this is going to fix things though, but core dump does not
contain Neovim functions in stack in this case.
|