diff options
author | Sean Dewar <seandewar@users.noreply.github.com> | 2022-02-16 21:21:05 +0000 |
---|---|---|
committer | Sean Dewar <seandewar@users.noreply.github.com> | 2022-02-17 14:45:21 +0000 |
commit | 3fba994de890625eeebf7693a13d4e38cfbea0c7 (patch) | |
tree | 84fc2f1ed1ea0c82829c481b087e6e58d0c4dad6 /src | |
parent | ac5856b3f515a39f5047f47d9c675a6206ce19bf (diff) | |
download | rneovim-3fba994de890625eeebf7693a13d4e38cfbea0c7.tar.gz rneovim-3fba994de890625eeebf7693a13d4e38cfbea0c7.tar.bz2 rneovim-3fba994de890625eeebf7693a13d4e38cfbea0c7.zip |
vim-patch:8.2.3493: large count test fails on MS-Windows
Problem: Large count test fails on MS-Windows.
Solution: Skip the test on MS-Windows.
https://github.com/vim/vim/commit/cddd5ac911707034ca27f10037c4b1b523188c47
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/testdir/test_put.vim | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/nvim/testdir/test_put.vim b/src/nvim/testdir/test_put.vim index cef2cf0dd7..13c00b3b71 100644 --- a/src/nvim/testdir/test_put.vim +++ b/src/nvim/testdir/test_put.vim @@ -138,7 +138,10 @@ func Test_p_with_count_leaves_mark_at_end() bwipe! endfunc -func Test_very_larg_count() +func Test_very_large_count() + " FIXME: should actually check if sizeof(int) == sizeof(long) + CheckNotMSWindows + new let @" = 'x' call assert_fails('norm 44444444444444p', 'E1240:') |