view ci/if_ver-1.vim @ 31647:094f4c67e9c9 v9.0.1156

patch 9.0.1156: tests fail because of a different error message Commit: https://github.com/vim/vim/commit/0cb3ca9f7a1b027973239bbea3d1a20dd1676a9c Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jan 7 13:07:11 2023 +0000 patch 9.0.1156: tests fail because of a different error message Problem: Tests fail because of a different error message. Solution: Don't give an error if a type name can't be found.
author Bram Moolenaar <Bram@vim.org>
date Sat, 07 Jan 2023 14:15:02 +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