# HG changeset patch # User Bram Moolenaar # Date 1549707312 -3600 # Node ID e43f30c5bad81306b45ebfeac50aeb9afee76026 # Parent ccee2fc5f05d0d83085d2d042f44aa5da916f1be patch 8.1.0885: test for restricted hangs on MS-Windows GUI commit https://github.com/vim/vim/commit/18c5632cab09e5e51320f55005f310920648f35b Author: Bram Moolenaar Date: Sat Feb 9 11:13:12 2019 +0100 patch 8.1.0885: test for restricted hangs on MS-Windows GUI Problem: Test for restricted hangs on MS-Windows GUI. Solution: Skip the test. diff --git a/src/testdir/test_restricted.vim b/src/testdir/test_restricted.vim --- a/src/testdir/test_restricted.vim +++ b/src/testdir/test_restricted.vim @@ -2,6 +2,11 @@ source shared.vim +if has('win32') && has('gui') + " Win32 GUI shows a dialog instead of displaying the error in the last line. + finish +endif + func Test_restricted() let cmd = GetVimCommand('Xrestricted') if cmd == '' diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -784,6 +784,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 885, +/**/ 884, /**/ 883,