comparison src/testdir/test_packadd.vim @ 14683:c833cf17a4b1 v8.1.0354

patch 8.1.0354: packadd test fails on MS-Windows commit https://github.com/vim/vim/commit/53c8a478cc4265549597b00214e0da812154742e Author: Bram Moolenaar <Bram@vim.org> Date: Sat Sep 8 19:12:12 2018 +0200 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.
author Christian Brabandt <cb@256bit.org>
date Sat, 08 Sep 2018 19:15:05 +0200
parents 285b051979a6
children b8fd7364befd
comparison
equal deleted inserted replaced
14682:3acba9455a63 14683:c833cf17a4b1
51 call assert_equal(17, g:ftdetect_works) 51 call assert_equal(17, g:ftdetect_works)
52 call assert_true(len(&rtp) > len(rtp)) 52 call assert_true(len(&rtp) > len(rtp))
53 call assert_match('/testdir/Xdir/pack/mine/opt/mytest\($\|,\)', &rtp) 53 call assert_match('/testdir/Xdir/pack/mine/opt/mytest\($\|,\)', &rtp)
54 54
55 let new_after = match(&rtp, '/testdir/Xdir/pack/mine/opt/mytest/after,') 55 let new_after = match(&rtp, '/testdir/Xdir/pack/mine/opt/mytest/after,')
56 let old_after = match(&rtp, ',' . first_after_entry . '\>') 56 let forwarded = substitute(first_after_entry, '\\', '[/\\\\]', 'g')
57 let old_after = match(&rtp, ',' . forwarded . '\>')
57 call assert_true(new_after > 0, 'rtp is ' . &rtp) 58 call assert_true(new_after > 0, 'rtp is ' . &rtp)
58 call assert_true(old_after > 0, 'rtp is ' . &rtp) 59 call assert_true(old_after > 0, 'match ' . forwarded . ' in ' . &rtp)
59 call assert_true(new_after < old_after, 'rtp is ' . &rtp) 60 call assert_true(new_after < old_after, 'rtp is ' . &rtp)
60 61
61 " NOTE: '/.../opt/myte' forwardly matches with '/.../opt/mytest' 62 " NOTE: '/.../opt/myte' forwardly matches with '/.../opt/mytest'
62 call mkdir(fnamemodify(s:plugdir, ':h') . '/myte', 'p') 63 call mkdir(fnamemodify(s:plugdir, ':h') . '/myte', 'p')
63 let rtp = &rtp 64 let rtp = &rtp