From: Vladimír Marek Date: Thu, 18 Jun 2026 19:25:05 +0000 (+0000) Subject: patch 9.2.0675: tests: Test_cd_from_non_existing_dir() fails on Solaris X-Git-Tag: v9.2.0675^0 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b464c36bf976d8f5c7d42371704e487c65f905f4;p=thirdparty%2Fvim.git patch 9.2.0675: tests: Test_cd_from_non_existing_dir() fails on Solaris Problem: tests: Test_cd_from_non_existing_dir() fails on Solaris Solution: Skip the test on Solaris (Vladimír Marek). Test_cd_from_non_existing_dir() depends on deleting the current working directory. Solaris does not allow that, so skip the test there. closes: #20563 Signed-off-by: Vladimír Marek Signed-off-by: Christian Brabandt --- diff --git a/src/testdir/test_cd.vim b/src/testdir/test_cd.vim index a175cd2748..d732e54397 100644 --- a/src/testdir/test_cd.vim +++ b/src/testdir/test_cd.vim @@ -211,6 +211,9 @@ func Test_lcd_win_execute() endfunc func Test_cd_from_non_existing_dir() + if has('sun') + throw 'Skipped: Solaris does not allow deleting the current working directory' + endif CheckNotMSWindows let saveddir = getcwd() diff --git a/src/version.c b/src/version.c index c476165121..14ebcf3433 100644 --- a/src/version.c +++ b/src/version.c @@ -759,6 +759,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 675, /**/ 674, /**/