diff options
author | Bram Moolenaar <Bram@vim.org> | 2021-11-02 21:39:49 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-11-02 21:39:49 +0000 |
commit | 69b3072d984480935ec412b32b97fea974d2b689 (patch) | |
tree | c00c9ec8a3e834ef3e2e2804d7de5ac5aa5d9720 /src/testdir/test_put.vim | |
parent | 7a33ebfc5b04353aa7674972087d581def8fdcc1 (diff) | |
download | vim-git-69b3072d984480935ec412b32b97fea974d2b689.tar.gz |
patch 8.2.3573: cannot decide whether to skip test that fails with 64 bitv8.2.3573
Problem: Cannot decide whether to skip test that fails with 64 bit ints.
(closes #9072)
Solution: Add v:sizeofint, v:sizeoflong and v:sizeofpointer. Improve the
check for multiply overflow.
Diffstat (limited to 'src/testdir/test_put.vim')
-rw-r--r-- | src/testdir/test_put.vim | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/testdir/test_put.vim b/src/testdir/test_put.vim index 921d3b215..82379dc05 100644 --- a/src/testdir/test_put.vim +++ b/src/testdir/test_put.vim @@ -149,13 +149,6 @@ func Test_p_with_count_leaves_mark_at_end() endfunc func Test_very_large_count() - " FIXME: should actually check if sizeof(int) == sizeof(long) - CheckNotMSWindows - - if v:numbersize != 64 - throw 'Skipped: only works with 64 bit numbers' - endif - new let @" = 'x' call assert_fails('norm 44444444444444p', 'E1240:') |