view ci/if_ver-1.vim @ 31351:a207f55deb62 v9.0.1009

patch 9.0.1009: test for catch after interrupt is flaky on MS-Windows Commit: https://github.com/vim/vim/commit/72b5b0d51aa9ddf8d338a5a133a667a3c2392ae1 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Dec 5 15:24:20 2022 +0000 patch 9.0.1009: test for catch after interrupt is flaky on MS-Windows Problem: Test for catch after interrupt is flaky on MS-Windows. Solution: Mark the test as flaky.
author Bram Moolenaar <Bram@vim.org>
date Mon, 05 Dec 2022 16:30:04 +0100
parents 0878f0fd349b
children
line wrap: on
line source

" Print all interface versions for Ubuntu. Part 1.

if 1
  execute 'source' expand('<sfile>:h') .. '/if_ver-cmd.vim'

  echo "*** Interface versions ***\n"

  echo 'Lua:'
  PrintVer lua print(vim.lua_version, jit and "(LuaJIT)" or "")

  echo 'MzScheme:'
  PrintVer mzscheme (display (version))

  echo 'Perl:'
  PrintVer perl print $^V

  echo 'Ruby:'
  PrintVer ruby print RUBY_VERSION

  echo 'Tcl:'
  PrintVer tcl puts [info patchlevel]

  echo 'Python 2:'
  PrintVer python print sys.version
endif