diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-02-13 21:33:28 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2022-02-13 21:33:28 +0800 |
commit | bad22bd65668bb0677be35759a793e60543df980 (patch) | |
tree | ba03337a6d0ea0d0bff11ec8cbcf730e161aaa8f | |
parent | 03348e5b9db3f057057a70581ef71180c3cb6527 (diff) | |
download | rneovim-bad22bd65668bb0677be35759a793e60543df980.tar.gz rneovim-bad22bd65668bb0677be35759a793e60543df980.tar.bz2 rneovim-bad22bd65668bb0677be35759a793e60543df980.zip |
vim-patch:8.2.3512: timestamp test fails on some systems
Problem: Timestamp test fails on some systems.
Solution: Sleep for a short while.
https://github.com/vim/vim/commit/accf4ed352c07ffe59022377c42d36e12dd6d461
-rw-r--r-- | src/nvim/testdir/test_stat.vim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_stat.vim b/src/nvim/testdir/test_stat.vim index a6fe31b85a..841b5d2db7 100644 --- a/src/nvim/testdir/test_stat.vim +++ b/src/nvim/testdir/test_stat.vim @@ -104,6 +104,7 @@ func Test_autoread_fast() w! silent !echo bar > Xautoread + sleep 10m checktime call assert_equal('bar', trim(getline(1))) |