changeset 29593:a9b2609186bf v9.0.0137

patch 9.0.0137: debugger test may fail when $CWD is very long Commit: https://github.com/vim/vim/commit/db7a88db8b52508d3df6d5947f7c4f3ef05d5f62 Author: James McCoy <jamessan@jamessan.com> Date: Wed Aug 3 16:13:27 2022 +0100 patch 9.0.0137: debugger test may fail when $CWD is very long Problem: Debugger test may fail when $CWD is very long. Solution: Skip the test if the directory name is too long. (James McCoy, closes #10837)
author Bram Moolenaar <Bram@vim.org>
date Wed, 03 Aug 2022 17:15:03 +0200
parents 53b06cfe2835
children 6eea3c60c85c
files src/testdir/test_debugger.vim src/version.c
diffstat 2 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/testdir/test_debugger.vim
+++ b/src/testdir/test_debugger.vim
@@ -364,6 +364,8 @@ endfunc
 
 " Test for expression breakpoint set using ":breakadd expr <expr>"
 func Test_Debugger_breakadd_expr()
+  CheckCWD
+
   let lines =<< trim END
     let g:Xtest_var += 1
   END
--- a/src/version.c
+++ b/src/version.c
@@ -736,6 +736,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    137,
+/**/
     136,
 /**/
     135,