mirror of
https://github.com/zoriya/vim.git
synced 2026-06-03 20:13:31 +00:00
patch 8.1.0354: packadd test fails on MS-Windows
Problem: Packadd test fails on MS-Windows. Solution: Ignore difference between forward and backward slashes.
This commit is contained in:
@@ -53,9 +53,10 @@ func Test_packadd()
|
||||
call assert_match('/testdir/Xdir/pack/mine/opt/mytest\($\|,\)', &rtp)
|
||||
|
||||
let new_after = match(&rtp, '/testdir/Xdir/pack/mine/opt/mytest/after,')
|
||||
let old_after = match(&rtp, ',' . first_after_entry . '\>')
|
||||
let forwarded = substitute(first_after_entry, '\\', '[/\\\\]', 'g')
|
||||
let old_after = match(&rtp, ',' . forwarded . '\>')
|
||||
call assert_true(new_after > 0, 'rtp is ' . &rtp)
|
||||
call assert_true(old_after > 0, 'rtp is ' . &rtp)
|
||||
call assert_true(old_after > 0, 'match ' . forwarded . ' in ' . &rtp)
|
||||
call assert_true(new_after < old_after, 'rtp is ' . &rtp)
|
||||
|
||||
" NOTE: '/.../opt/myte' forwardly matches with '/.../opt/mytest'
|
||||
|
||||
@@ -794,6 +794,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
354,
|
||||
/**/
|
||||
353,
|
||||
/**/
|
||||
|
||||
Reference in New Issue
Block a user