view src/testdir/test_file_size.vim @ 11963:f1635be0e963 v8.0.0862

patch 8.0.0862: file size test fails on MS-Windows commit https://github.com/vim/vim/commit/07c043af5f054c7dfeb676414f8fa6aeda8f9c2b Author: Bram Moolenaar <Bram@vim.org> Date: Fri Aug 4 22:56:39 2017 +0200 patch 8.0.0862: file size test fails on MS-Windows Problem: File size test fails on MS-Windows. Solution: Set fileformat after opening new buffer. Strip CR.
author Christian Brabandt <cb@256bit.org>
date Fri, 04 Aug 2017 23:00:05 +0200
parents 0240e7e3d736
children 44aa2997239d
line wrap: on
line source

" Inserts 2 million lines with consecutive integers starting from 1
" (essentially, the output of GNU's seq 1 2000000), writes them to Xtest
" and writes its cksum to test.out.
"
" We need 2 million lines to trigger a call to mf_hash_grow().  If it would mess
" up the lines the checksum would differ.
"
" cksum is part of POSIX and so should be available on most Unixes.
" If it isn't available then the test will be skipped.
func Test_File_Size()
  if !executable('cksum')
      return
  endif

  new
  set belloff=all fileformat=unix undolevels=-1
  for i in range(1, 2000000, 100)
      call append(i, range(i, i + 99))
  endfor

  1delete
  w! Xtest
  let res = systemlist('cksum Xtest')[0]
  let res = substitute(res, "\r", "", "")
  call assert_equal('3678979763 14888896 Xtest', res)

  enew!
  call delete('Xtest')
  set belloff& fileformat& undolevels&
endfunc