diff options
author | James McCoy <jamessan@jamessan.com> | 2017-05-16 20:24:11 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-16 20:24:11 -0400 |
commit | 96ede7c5679bf3ef9e318c663965978a87842402 (patch) | |
tree | bcdbd361283e20c12e618118dacc241a40891cc6 | |
parent | 597d65b4b7e10e3155837c3962e35283fc414d8d (diff) | |
parent | 4a083200078f76f29a84e4788108000009a54020 (diff) | |
download | rneovim-96ede7c5679bf3ef9e318c663965978a87842402.tar.gz rneovim-96ede7c5679bf3ef9e318c663965978a87842402.tar.bz2 rneovim-96ede7c5679bf3ef9e318c663965978a87842402.zip |
Merge pull request #6759 from jamessan/flaky-timers
oldtests: Mark test_timer's Test_oneshot as flaky
-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 |