Mercurial > vim
view src/testdir/test_sleep.vim @ 32525:bb5458706799 v9.0.1594
patch 9.0.1594: some internal error messages are translated
Commit: https://github.com/vim/vim/commit/68ebcee0237d927dd5386073499162389d4d708a
Author: RestorerZ <restorer@mail2k.ru>
Date: Wed May 31 17:12:14 2023 +0100
patch 9.0.1594: some internal error messages are translated
Problem: Some internal error messages are translated.
Solution: Consistently do not translate internal error messages.
(closes #12459)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Wed, 31 May 2023 18:15:04 +0200 |
parents | 98774a275d6d |
children |
line wrap: on
line source
" Test for sleep and sleep! commands func! s:get_time_ms() return float2nr(reltimefloat(reltime()) * 1000) endfunc func! s:assert_takes_longer(cmd, time_ms) let start = s:get_time_ms() execute a:cmd let end = s:get_time_ms() call assert_true(end - start >=# a:time_ms) endfun func! Test_sleep_bang() call s:assert_takes_longer('sleep 50m', 50) call s:assert_takes_longer('sleep! 50m', 50) call s:assert_takes_longer('sl 50m', 50) call s:assert_takes_longer('sl! 50m', 50) call s:assert_takes_longer('1sleep', 1000) call s:assert_takes_longer('normal 1gs', 1000) endfunc " vim: shiftwidth=2 sts=2 expandtab