From: Christian Brabandt Date: Mon, 7 Jul 2025 18:03:03 +0000 (+0200) Subject: patch 9.1.1522: tests: still some ANSI escape sequences in test output X-Git-Tag: v9.1.1522^0 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=bcb06c92c464d0d593334509323caacea64e88cf;p=thirdparty%2Fvim.git patch 9.1.1522: tests: still some ANSI escape sequences in test output Problem: tests: still some ANSI escape sequences in test messages output Solution: update the cleanup regexp to also handle those ANSI escape sequences: `|2h` and `|31H` like in this log output: ``` 2025-07-05T20:02:47.6350409Z |2hExecuted 171 tests in 4.739708 seconds|31H ``` related: #17677 Signed-off-by: Christian Brabandt --- diff --git a/src/testdir/runtest.vim b/src/testdir/runtest.vim index f97c432930..5028a85f67 100644 --- a/src/testdir/runtest.vim +++ b/src/testdir/runtest.vim @@ -540,7 +540,7 @@ func FinishTesting() split messages call append(line('$'), '') call append(line('$'), 'From ' . g:testname . ':') - call append(line('$'), s:messages->map({_, val -> substitute(val, '\%x1b\[\d\?m', '', 'g')})) + call append(line('$'), s:messages->map({_, val -> substitute(val, '\%x1b[[|]\(\d\?\|\d\+\)[hm]', '', 'g')})) write qall! diff --git a/src/version.c b/src/version.c index e87aa4ecdb..ba1034138e 100644 --- a/src/version.c +++ b/src/version.c @@ -719,6 +719,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1522, /**/ 1521, /**/