From e18d2838b5dafd7b9ec84df277e4d22720e202d4 Mon Sep 17 00:00:00 2001 From: XiaowenHu96 Date: Sun, 5 Jul 2026 20:14:49 +0800 Subject: [PATCH] fix(test): skip flaky Test_set_cursor Problem: Test_set_cursor is flaky in CI. MsgPack::Raw Perl module has a heap-overflow issue. See https://github.com/jacquesg/p5-MsgPack-Raw/issues/4 Solution: Skip the test until the upstream module is fixed. --- test/old/testdir/test_perl.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/test/old/testdir/test_perl.vim b/test/old/testdir/test_perl.vim index 275ec4c483..2b920cfcf2 100644 --- a/test/old/testdir/test_perl.vim +++ b/test/old/testdir/test_perl.vim @@ -287,6 +287,7 @@ func Test_000_SvREFCNT() endfunc func Test_set_cursor() + throw 'skipped: bug in p5-MsgPack-Raw: https://github.com/jacquesg/p5-MsgPack-Raw/issues/4' " Check that setting the cursor position works. new call setline(1, ['first line', 'second line'])