diff options
| author | zeertzjq <zeertzjq@outlook.com> | 2024-10-22 09:05:14 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-22 09:05:14 +0800 |
| commit | f663243e95f488b8f4224bdae2697ddac21d0ffb (patch) | |
| tree | 944b6e4c5e0593605060ce96861d5f3ddf94a100 /test/old/testdir/Makefile | |
| parent | c8e47f648052f8001d8a493cf7ca6c4867a36bc3 (diff) | |
| download | rneovim-f663243e95f488b8f4224bdae2697ddac21d0ffb.tar.gz rneovim-f663243e95f488b8f4224bdae2697ddac21d0ffb.tar.bz2 rneovim-f663243e95f488b8f4224bdae2697ddac21d0ffb.zip | |
vim-patch:9.1.0797: testing of options can be further improved (#30893)
Problem: testing of options can be further improved
Solution: split the generated option test into test_options_all.vim,
add more test cases, save and restore values, fix use-after-free
closes: vim/vim#15894
https://github.com/vim/vim/commit/6eca04e9f1d446dc509ba51e32da56fa413fe2f0
Co-authored-by: Milly <milly.ca@gmail.com>
Diffstat (limited to 'test/old/testdir/Makefile')
| -rw-r--r-- | test/old/testdir/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/old/testdir/Makefile b/test/old/testdir/Makefile index 6f6c90fda1..d73571f463 100644 --- a/test/old/testdir/Makefile +++ b/test/old/testdir/Makefile @@ -154,7 +154,7 @@ newtests: newtestssilent newtestssilent: $(NEW_TESTS_RES) -GEN_OPT_DEPS = gen_opt_test.vim ../../../src/nvim/options.lua +GEN_OPT_DEPS = gen_opt_test.vim ../../../src/nvim/options.lua ../../../runtime/doc/options.txt opt_test.vim: $(GEN_OPT_DEPS) $(NVIM_PRG) -e -s -u NONE $(NO_INITS) -S $(GEN_OPT_DEPS) @@ -164,7 +164,7 @@ opt_test.vim: $(GEN_OPT_DEPS) fi # Explicit dependencies. -test_options.res test_alot.res: opt_test.vim +test_options_all.res: opt_test.vim %.res: %.vim .gdbinit @echo "[OLDTEST] Running" $* |