Skip to content

Commit 5449f7c

Browse files
committed
patch 8.0.0811: MS-Windows: test_expand_dllpath fails
Problem: MS-Windows: test_expand_dllpath fails. Solution: Change backslashes to forward slashes
1 parent d0b6c6c commit 5449f7c

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

src/testdir/test_expand_dllpath.vim

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ func s:test_expand_dllpath(optname)
66
execute 'call assert_equal("' . $TEST_EXPAND_DLLPATH . '", &' . a:optname . ')'
77

88
execute 'set ' . a:optname . '=~' . $TEST_EXPAND_DLLPATH
9-
execute 'call assert_equal("' . $HOME . $TEST_EXPAND_DLLPATH . '", &' . a:optname . ')'
9+
let home = substitute($HOME, '\\', '/', 'g')
10+
execute 'call assert_equal("' . home . $TEST_EXPAND_DLLPATH . '", &' . a:optname . ')'
1011
finally
1112
execute 'let &' . a:optname . ' = dllpath_save'
1213
let $TEST_EXPAND_DLLPATH = ''

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -769,6 +769,8 @@ static char *(features[]) =
769769

770770
static int included_patches[] =
771771
{ /* Add new patch number below this line */
772+
/**/
773+
811,
772774
/**/
773775
810,
774776
/**/

0 commit comments

Comments
 (0)