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.
diff --git a/src/testdir/test_put.vim b/src/testdir/test_put.vim
index 4a3a0d1..a53e3cd 100644
--- a/src/testdir/test_put.vim
+++ b/src/testdir/test_put.vim
@@ -134,7 +134,10 @@
   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:')