view src/testdir/test_version.vim @ 33758:75176b7f8170 v9.0.2101

patch 9.0.2101: CI: test_termdebug may still fail Commit: https://github.com/vim/vim/commit/fdbadea4b60e5e1a0bf192dc5ee04d8ab06f4399 Author: shane.xb.qian <shane.qian@foxmail.com> Date: Sun Nov 12 09:42:12 2023 +0100 patch 9.0.2101: CI: test_termdebug may still fail Problem: CI: test_termdebug may still fail Solution: use term_wait() to make it more robust closes: #13529 Signed-off-by: shane.xb.qian <shane.qian@foxmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Sun, 12 Nov 2023 09:45:05 +0100
parents dfdd973cf0c9
children
line wrap: on
line source

" Test :version Ex command

so check.vim
so shared.vim

func Test_version()
  " version should always return the same string.
  let v1 = execute('version')
  let v2 = execute('version')
  call assert_equal(v1, v2)

  call assert_match("^\n\nVIM - Vi IMproved .*", v1)
endfunc

func Test_version_redirect()
  CheckNotGui
  CheckCanRunGui
  CheckUnix

  call RunVim([], [], '--clean -g --version >Xversion 2>&1')
  call assert_match('Features included', readfile('Xversion')->join())

  call delete('Xversion')
endfunc

" vim: shiftwidth=2 sts=2 expandtab