diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-06-06 16:12:12 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-06-06 16:12:12 +0200 |
commit | 5d30ff19648d2ff0696cea97582b902f6a4ec0ba (patch) | |
tree | 2b932551af5b577566f7d024d6491127ede12451 /src/testdir/test_startup.vim | |
parent | f6d50f1da8ed22cd6ff37ade965684dd1fa67a2c (diff) | |
download | vim-git-5d30ff19648d2ff0696cea97582b902f6a4ec0ba.tar.gz |
patch 8.1.1483: skipped tests are not properly listedv8.1.1483
Problem: Skipped tests are not properly listed.
Solution: Throw a "Skipped" exception instead of using ":finish" or ":return".
Diffstat (limited to 'src/testdir/test_startup.vim')
-rw-r--r-- | src/testdir/test_startup.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testdir/test_startup.vim b/src/testdir/test_startup.vim index 0ce8c81e6..41bb12f20 100644 --- a/src/testdir/test_startup.vim +++ b/src/testdir/test_startup.vim @@ -659,7 +659,7 @@ endfunc func Test_start_with_tabs() if !CanRunVimInTerminal() - return + throw 'Skipped: cannot make screendumps' endif let buf = RunVimInTerminal('-p a b c', {}) |