comparison src/testdir/if_ver-1.vim @ 11999:94e37fd22556 v8.0.0880

patch 8.0.0880: Travis uses an old Ubuntu version commit https://github.com/vim/vim/commit/02113ed4dfa585b4553a7c630b4d7eed0002aebd Author: Bram Moolenaar <Bram@vim.org> Date: Sun Aug 6 17:06:24 2017 +0200 patch 8.0.0880: Travis uses an old Ubuntu version Problem: Travis uses an old Ubuntu version. Solution: Switch from precise to trusty. (Ken Takata, closes https://github.com/vim/vim/issues/1897)
author Christian Brabandt <cb@256bit.org>
date Sun, 06 Aug 2017 17:15:04 +0200
parents
children
comparison
equal deleted inserted replaced
11998:e2b3a7cf5504 11999:94e37fd22556
1 " Print all interface versions and write the result into if_ver.txt.
2 " For Ubuntu. Part 1.
3
4 redir! > if_ver.txt
5 if 1
6 echo "*** Interface versions ***"
7 echo "\nLua:"
8 lua print(_VERSION)
9 " echo "\nLuaJIT:"
10 " lua print(jit.version)
11 if has('mzscheme')
12 echo "\nMzScheme:"
13 mzscheme (display (version))
14 endif
15 echo "\nPerl:"
16 perl print $^V
17 echo "\nRuby:"
18 ruby print RUBY_VERSION
19 if has('tcl')
20 echo "\nTcl:"
21 tcl puts [info patchlevel]
22 endif
23 echo "\nPython 2:"
24 python import sys; print sys.version
25 endif
26 redir END