diff options
-rw-r--r-- | src/testdir/test_profile.vim | 7 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/src/testdir/test_profile.vim b/src/testdir/test_profile.vim index 3abe89805..c8c877d5c 100644 --- a/src/testdir/test_profile.vim +++ b/src/testdir/test_profile.vim @@ -593,11 +593,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 diff --git a/src/version.c b/src/version.c index 7a25bc0d6..086d79f15 100644 --- a/src/version.c +++ b/src/version.c @@ -751,6 +751,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 2411, +/**/ 2410, /**/ 2409, |