Gitiles
Code Review
Sign In
gerrit.omnirom.org
/
android_external_vim
/
ac49f61a206217e94438b7b51bbfcae79b8a2a19
/
.
/
src
/
testdir
/
test_modeline.vim
blob: f02c68c7b7c41e6e2ff925fd5ec4d2c319650958 [
file
] [
log
] [
blame
]
" Tests for parsing the modeline.
func Test_modeline_invalid()
"
This
was reading before allocated memory
.
call writefile
([
'vi:0'
,
'nothing'
],
'Xmodeline'
)
call assert_fails
(
'split Xmodeline'
,
'E518:'
)
bwipe
!
call
delete
(
'Xmodeline'
)
endfunc