diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2014-08-18 00:27:07 -0400 |
|---|---|---|
| committer | Justin M. Keyes <justinkz@gmail.com> | 2014-08-18 00:27:07 -0400 |
| commit | a0e593e26163c730e75a362dcc9e34a645021aff (patch) | |
| tree | a4ebd7da8d7a5ba8edf9b5cb9fa49d42fd5048b7 /src/nvim/testdir | |
| parent | 6dcd629ed6e61fbebcf715cd1b362773f1f209ec (diff) | |
| parent | 5617ee8f352a2ddb61f52e5e0ae7347957d95991 (diff) | |
| download | rneovim-a0e593e26163c730e75a362dcc9e34a645021aff.tar.gz rneovim-a0e593e26163c730e75a362dcc9e34a645021aff.tar.bz2 rneovim-a0e593e26163c730e75a362dcc9e34a645021aff.zip | |
Merge pull request #1019 from splinterofchaos/globpath
vim-patch:7.4.279
Diffstat (limited to 'src/nvim/testdir')
| -rw-r--r-- | src/nvim/testdir/test97.in | 11 | ||||
| -rw-r--r-- | src/nvim/testdir/test97.ok | 3 |
2 files changed, 10 insertions, 4 deletions
diff --git a/src/nvim/testdir/test97.in b/src/nvim/testdir/test97.in index 59bb62d15c..d4ff6d9295 100644 --- a/src/nvim/testdir/test97.in +++ b/src/nvim/testdir/test97.in @@ -8,12 +8,15 @@ STARTTEST :" consistent sorting of file names :set nofileignorecase :e test.out -:put =glob('Xxx\{') -:put =glob('Xxx\$') +:$put =glob('Xxx\{') +:$put =glob('Xxx\$') :w! Xxx{ :w! Xxx\$ -:put =glob('Xxx\{') -:put =glob('Xxx\$') +:$put =glob('Xxx\{') +:$put =glob('Xxx\$') +:" +:$put =string(globpath('sautest/autoload', '*.vim')) +:$put =string(globpath('sautest/autoload', '*.vim', 0, 1)) :w :qa! ENDTEST diff --git a/src/nvim/testdir/test97.ok b/src/nvim/testdir/test97.ok index afa96a4de4..32cdcbf1be 100644 --- a/src/nvim/testdir/test97.ok +++ b/src/nvim/testdir/test97.ok @@ -3,3 +3,6 @@ Xxx{ Xxx$ +'sautest/autoload/Test104.vim +sautest/autoload/footest.vim' +['sautest/autoload/Test104.vim', 'sautest/autoload/footest.vim'] |