Mercurial > vim
annotate src/testdir/test_sleep.vim @ 30961:22264b648b5d
patch 9.0.0815
Commit: https://github.com/vim/vim/commit/9c50eeb40117413bf59a9da904c8d0921ed0a6e6
Author: Martin Tournoij <martin@arp242.net>
Date: Sat Oct 22 09:02:56 2022 +0100
patch 9.0.0815
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 22 Oct 2022 10:15:05 +0200 |
parents | 6d3dee0d7de5 |
children | 98774a275d6d |
rev | line source |
---|---|
23648
b7d3c79075c5
patch 8.2.2366: when using ":sleep" the cursor is always displayed
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1 " Test for sleep and sleep! commands |
b7d3c79075c5
patch 8.2.2366: when using ":sleep" the cursor is always displayed
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2 |
b7d3c79075c5
patch 8.2.2366: when using ":sleep" the cursor is always displayed
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
3 func! s:get_time_ms() |
b7d3c79075c5
patch 8.2.2366: when using ":sleep" the cursor is always displayed
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
4 let timestr = reltimestr(reltime()) |
b7d3c79075c5
patch 8.2.2366: when using ":sleep" the cursor is always displayed
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
5 let dotidx = stridx(timestr, '.') |
b7d3c79075c5
patch 8.2.2366: when using ":sleep" the cursor is always displayed
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
6 let sec = str2nr(timestr[:dotidx]) |
b7d3c79075c5
patch 8.2.2366: when using ":sleep" the cursor is always displayed
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
7 let msec = str2nr(timestr[dotidx + 1:]) |
b7d3c79075c5
patch 8.2.2366: when using ":sleep" the cursor is always displayed
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
8 return (sec * 1000) + (msec / 1000) |
b7d3c79075c5
patch 8.2.2366: when using ":sleep" the cursor is always displayed
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
9 endfunc |
b7d3c79075c5
patch 8.2.2366: when using ":sleep" the cursor is always displayed
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
10 |
b7d3c79075c5
patch 8.2.2366: when using ":sleep" the cursor is always displayed
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
11 func! s:assert_takes_longer(cmd, time_ms) |
b7d3c79075c5
patch 8.2.2366: when using ":sleep" the cursor is always displayed
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
12 let start = s:get_time_ms() |
b7d3c79075c5
patch 8.2.2366: when using ":sleep" the cursor is always displayed
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
13 execute a:cmd |
b7d3c79075c5
patch 8.2.2366: when using ":sleep" the cursor is always displayed
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
14 let end = s:get_time_ms() |
b7d3c79075c5
patch 8.2.2366: when using ":sleep" the cursor is always displayed
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
15 call assert_true(end - start >=# a:time_ms) |
b7d3c79075c5
patch 8.2.2366: when using ":sleep" the cursor is always displayed
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
16 endfun |
b7d3c79075c5
patch 8.2.2366: when using ":sleep" the cursor is always displayed
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
17 |
b7d3c79075c5
patch 8.2.2366: when using ":sleep" the cursor is always displayed
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
18 func! Test_sleep_bang() |
b7d3c79075c5
patch 8.2.2366: when using ":sleep" the cursor is always displayed
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
19 call s:assert_takes_longer('sleep 50m', 50) |
b7d3c79075c5
patch 8.2.2366: when using ":sleep" the cursor is always displayed
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
20 call s:assert_takes_longer('sleep! 50m', 50) |
b7d3c79075c5
patch 8.2.2366: when using ":sleep" the cursor is always displayed
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
21 call s:assert_takes_longer('sl 50m', 50) |
b7d3c79075c5
patch 8.2.2366: when using ":sleep" the cursor is always displayed
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
22 call s:assert_takes_longer('sl! 50m', 50) |
b7d3c79075c5
patch 8.2.2366: when using ":sleep" the cursor is always displayed
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
23 call s:assert_takes_longer('1sleep', 1000) |
24101
6d3dee0d7de5
patch 8.2.2592: code coverage could be improved
Bram Moolenaar <Bram@vim.org>
parents:
23648
diff
changeset
|
24 call s:assert_takes_longer('normal 1gs', 1000) |
23648
b7d3c79075c5
patch 8.2.2366: when using ":sleep" the cursor is always displayed
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
25 endfunc |
b7d3c79075c5
patch 8.2.2366: when using ":sleep" the cursor is always displayed
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
26 |
b7d3c79075c5
patch 8.2.2366: when using ":sleep" the cursor is always displayed
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
27 " vim: shiftwidth=2 sts=2 expandtab |