commit | 0f0044125c2a5dcde2c4605efc39d2e237eed024 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Wed Nov 03 13:43:16 2021 +0000 |
committer | Bram Moolenaar <Bram@vim.org> | Wed Nov 03 13:43:16 2021 +0000 |
tree | 8ce852a0cbf5601da7f3a41279909d9a0ef15c26 | |
parent | a63780b9770699bf8fda93affeab2c728bc76912 [diff] |
patch 8.2.3577: overflow check fails with 32 ints Problem: Overflow check fails with 32 ints. Solution: Only test with 64 bit ints.
diff --git a/src/testdir/test_put.vim b/src/testdir/test_put.vim index 82379dc..1b67c85 100644 --- a/src/testdir/test_put.vim +++ b/src/testdir/test_put.vim
@@ -149,6 +149,10 @@ endfunc func Test_very_large_count() + if v:sizeofint != 8 + throw 'Skipped: only works with 64 bit ints' + endif + new let @" = 'x' call assert_fails('norm 44444444444444p', 'E1240:')