Add tests for invalid unicode filenames

Ref #1071
This commit is contained in:
ZyX 2014-09-14 14:01:42 +04:00
parent 4ed1a7e561
commit a4e711dae7
1 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,19 @@
set encoding=utf-8
let g:powerline_config_paths = [expand('<sfile>:p:h:h') . '/powerline/config_files']
set laststatus=2
set showtabline=2
edit `="\xFF"`
redir => g:messages
try
source powerline/bindings/vim/plugin/powerline.vim
redrawstatus!
catch
call writefile(['Unexpected exception', v:exception], 'message.fail')
cquit
endtry
redir END
if g:messages =~# '\v\S'
call writefile(['Unexpected messages'] + split(g:messages, "\n", 1), 'message.fail')
cquit
endif
qall!