diff options
author | James McCoy <jamessan@jamessan.com> | 2017-05-16 15:26:54 -0400 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2017-05-16 15:32:19 -0400 |
commit | 4a083200078f76f29a84e4788108000009a54020 (patch) | |
tree | bcdbd361283e20c12e618118dacc241a40891cc6 /src | |
parent | 597d65b4b7e10e3155837c3962e35283fc414d8d (diff) | |
download | rneovim-4a083200078f76f29a84e4788108000009a54020.tar.gz rneovim-4a083200078f76f29a84e4788108000009a54020.tar.bz2 rneovim-4a083200078f76f29a84e4788108000009a54020.zip |
oldtests: Mark test_timer's Test_oneshot as flaky
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/testdir/runtest.vim | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/nvim/testdir/runtest.vim b/src/nvim/testdir/runtest.vim index 6832622cdf..a754e5fdfb 100644 --- a/src/nvim/testdir/runtest.vim +++ b/src/nvim/testdir/runtest.vim @@ -134,7 +134,10 @@ else endif " Names of flaky tests. -let s:flaky = ['Test_with_partial_callback()'] +let s:flaky = [ + \ 'Test_with_partial_callback()', + \ 'Test_oneshot()' + \ ] " Locate Test_ functions and execute them. set nomore |