Mercurial > vim
view src/testdir/test_reltime.vim @ 23677:94409ebb33f1 v8.2.2380
patch 8.2.2380: Vim9: occasional crash when using try/catch and a timer
Commit: https://github.com/vim/vim/commit/a0f7f73ebb3ab032af08699c24c465403512b7d8
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Jan 20 22:22:49 2021 +0100
patch 8.2.2380: Vim9: occasional crash when using try/catch and a timer
Problem: Vim9: occasional crash when using try/catch and a timer.
Solution: Save and restore "need_rethrow" when invoking a timer callback.
(closes #7708)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Wed, 20 Jan 2021 22:30:04 +0100 |
parents | 2fb397573541 |
children | acda780ffc3e |
line wrap: on
line source
" Tests for reltime() source check.vim CheckFeature reltime CheckFeature float func Test_reltime() let now = reltime() sleep 10m let later = reltime() let elapsed = now->reltime() call assert_true(reltimestr(elapsed) =~ '0\.0') call assert_true(elapsed->reltimestr() != '0.0') call assert_true(reltimefloat(elapsed) < 0.1) call assert_true(elapsed->reltimefloat() > 0.0) let same = reltime(now, now) call assert_equal('0.000', split(reltimestr(same))[0][:4]) call assert_equal(0.0, reltimefloat(same)) let differs = reltime(now, later) call assert_true(reltimestr(differs) =~ '0\.0') call assert_true(reltimestr(differs) != '0.0') call assert_true(reltimefloat(differs) < 0.1) call assert_true(reltimefloat(differs) > 0.0) call assert_equal(0, reltime({})) call assert_equal(0, reltime({}, {})) endfunc " vim: shiftwidth=2 sts=2 expandtab