# HG changeset patch # User Christian Brabandt # Date 1489954504 -3600 # Node ID 1083038c59ba80ad145875ac683fe57b251d75e2 # Parent eee711594493f8aebf2ddcd9ce3bcb939f6c88b2 patch 8.0.0491: quotestar test fails when features are missing commit https://github.com/vim/vim/commit/bfd830d3e2dbd1e9b14c65625f18773074e6ac67 Author: Bram Moolenaar Date: Sun Mar 19 21:01:14 2017 +0100 patch 8.0.0491: quotestar test fails when features are missing Problem: The quotestar test fails when a required feature is missing. Solution: Prepend "Skipped" to the thrown exception. diff --git a/src/testdir/test_quotestar.vim b/src/testdir/test_quotestar.vim --- a/src/testdir/test_quotestar.vim +++ b/src/testdir/test_quotestar.vim @@ -134,6 +134,6 @@ func Test_quotestar() let @* = quotestar_saved if !empty(skipped) - throw skipped + throw 'Skipped: ' . skipped endif endfunc diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -765,6 +765,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 491, +/**/ 490, /**/ 489,