1
0
forked from aniani/vim

patch 8.2.3570: Test_very_large_count fails on 32bit systems

Problem:    Test_very_large_count fails on 32bit systems.
Solution:   Bail out when using 32 bit numbers. (closes #9072)
This commit is contained in:
Bram Moolenaar
2021-11-01 22:58:43 +00:00
parent fd916d654d
commit ec6e63079d
2 changed files with 6 additions and 0 deletions

View File

@@ -152,6 +152,10 @@ 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:')

View File

@@ -757,6 +757,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
3570,
/**/
3569,
/**/