From 8b79c32735867d873fdc4d482cdefd33e0bf62e7 Mon Sep 17 00:00:00 2001 From: Jan Edmund Lazo Date: Wed, 10 Dec 2025 13:12:44 -0500 Subject: [PATCH] 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. https://github.com/vim/vim/commit/98989a00145cc4f5783bcc12a2968a2f716eabb9 Co-authored-by: Bram Moolenaar --- test/old/testdir/test_profile.vim | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/test/old/testdir/test_profile.vim b/test/old/testdir/test_profile.vim index 3fd3e6eae7..3195f71b18 100644 --- a/test/old/testdir/test_profile.vim +++ b/test/old/testdir/test_profile.vim @@ -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