Mercurial > vim
view src/testdir/if_ver-1.vim @ 15430:d94901eeb762 v8.1.0723
patch 8.1.0723: cannot easily run specific test when in src/testdir
commit https://github.com/vim/vim/commit/ec50401e1e1357a1340b3c92109fd4860e38a8ac
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Jan 11 17:30:16 2019 +0100
patch 8.1.0723: cannot easily run specific test when in src/testdir
Problem: Cannot run specific test when in src/testdir the same was as in
the src directory.
Solution: Move build rule to src/testdir/Makefile.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 11 Jan 2019 17:45:05 +0100 |
parents | 94e37fd22556 |
children |
line wrap: on
line source
" Print all interface versions and write the result into if_ver.txt. " For Ubuntu. Part 1. redir! > if_ver.txt if 1 echo "*** Interface versions ***" echo "\nLua:" lua print(_VERSION) " echo "\nLuaJIT:" " lua print(jit.version) if has('mzscheme') echo "\nMzScheme:" mzscheme (display (version)) endif echo "\nPerl:" perl print $^V echo "\nRuby:" ruby print RUBY_VERSION if has('tcl') echo "\nTcl:" tcl puts [info patchlevel] endif echo "\nPython 2:" python import sys; print sys.version endif redir END