Mercurial > vim
view src/testdir/test_version.vim @ 23782:82a8abc75070 v8.2.2432
patch 8.2.2432: libvterm tests are executed even when libtool doesn't work
Commit: https://github.com/vim/vim/commit/76ab5446d530a1c81ead0ee42cb55b4a4d515bad
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Jan 30 20:35:28 2021 +0100
patch 8.2.2432: libvterm tests are executed even when libtool doesn't work
Problem: Libvterm tests are executed even when libtool doesn't work.
Solution: Only run libvterm tests if /usr/bin/gcc exists.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 30 Jan 2021 20:45:04 +0100 |
parents | 08940efa6b4e |
children | dfdd973cf0c9 |
line wrap: on
line source
" Test :version Ex command 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 " vim: shiftwidth=2 sts=2 expandtab