We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff0e57f commit 98989a0Copy full SHA for 98989a0
2 files changed
src/testdir/test_profile.vim
@@ -593,11 +593,16 @@ func Test_vim9_profiling()
593
enddef
594
def Crash()
595
596
- prof start /tmp/profile.log
+ prof start Xprofile_crash.log
597
prof func Func
598
Func()
599
END
600
+ call writefile(lines, 'Xprofile_crash.vim')
601
+ call system(GetVimCommandClean() . ' -es -c "so Xprofile_crash.vim" -c q')
602
+ call assert_equal(0, v:shell_error)
603
call CheckScriptSuccess(lines)
604
+ call delete('Xprofile_crash.vim')
605
+ call delete('Xprofile_crash.log')
606
endfunc
607
608
src/version.c
@@ -750,6 +750,8 @@ static char *(features[]) =
750
751
static int included_patches[] =
752
{ /* Add new patch number below this line */
753
+/**/
754
+ 2411,
755
/**/
756
2410,
757
0 commit comments