mirror of
https://github.com/neovim/neovim.git
synced 2026-03-31 04:42:03 +00:00
vim-patch:8.2.2411: profile test fails on MS-Windows
Problem: Profile test fails on MS-Windows.
Solution: Do the profiling in a separate Vim command.
98989a0014
Co-authored-by: Bram Moolenaar <Bram@vim.org>
This commit is contained in:
@@ -598,6 +598,7 @@ func Test_profile_typed_func()
|
||||
endfunc
|
||||
|
||||
func Test_vim9_profiling()
|
||||
throw 'Skipped: Vim9 script is N/A'
|
||||
" only tests that compiling and calling functions doesn't crash
|
||||
let lines =<< trim END
|
||||
vim9script
|
||||
@@ -606,11 +607,16 @@ func Test_vim9_profiling()
|
||||
enddef
|
||||
def Crash()
|
||||
enddef
|
||||
prof start /tmp/profile.log
|
||||
prof start Xprofile_crash.log
|
||||
prof func Func
|
||||
Func()
|
||||
END
|
||||
call writefile(lines, 'Xprofile_crash.vim')
|
||||
call system(GetVimCommandClean() . ' -es -c "so Xprofile_crash.vim" -c q')
|
||||
call assert_equal(0, v:shell_error)
|
||||
call CheckScriptSuccess(lines)
|
||||
call delete('Xprofile_crash.vim')
|
||||
call delete('Xprofile_crash.log')
|
||||
endfunc
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user