summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-10-10 13:54:01 +0100
committerBram Moolenaar <Bram@vim.org>2021-10-10 13:54:01 +0100
commitcddd5ac911707034ca27f10037c4b1b523188c47 (patch)
tree7583116c5612ce4caaa5ff7a679b095af63d35f2
parenteeed1c7ae090c17f4df51cf97b2a9e4d8b4f4dc7 (diff)
downloadvim-git-cddd5ac911707034ca27f10037c4b1b523188c47.tar.gz
patch 8.2.3493: large count test fails on MS-Windowsv8.2.3493
Problem: Large count test fails on MS-Windows. Solution: Skip the test on MS-Windows.
-rw-r--r--src/testdir/test_put.vim5
-rw-r--r--src/version.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/src/testdir/test_put.vim b/src/testdir/test_put.vim
index 4a3a0d197..a53e3cdca 100644
--- a/src/testdir/test_put.vim
+++ b/src/testdir/test_put.vim
@@ -134,7 +134,10 @@ func Test_gp_with_count_leaves_cursor_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:')
diff --git a/src/version.c b/src/version.c
index 247af254c..ce1939b0f 100644
--- a/src/version.c
+++ b/src/version.c
@@ -758,6 +758,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 3493,
+/**/
3492,
/**/
3491,