aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordundargoc <gocdundar@gmail.com>2024-03-29 12:46:41 +0100
committerdundargoc <33953936+dundargoc@users.noreply.github.com>2024-03-29 14:27:13 +0100
commit5a5d26b4abdfc32c0e538a7a4b0d73c6827f0e5b (patch)
tree57300fb2faab2580bfd0305ce46578ccb082e241
parent3d554b755b8090b8a991fc4720cb564c8e92e2b7 (diff)
downloadrneovim-5a5d26b4abdfc32c0e538a7a4b0d73c6827f0e5b.tar.gz
rneovim-5a5d26b4abdfc32c0e538a7a4b0d73c6827f0e5b.tar.bz2
rneovim-5a5d26b4abdfc32c0e538a7a4b0d73c6827f0e5b.zip
test: skip flaky tests
-rw-r--r--test/old/testdir/test_perl.vim3
-rw-r--r--test/unit/eval/typval_spec.lua2
2 files changed, 3 insertions, 2 deletions
diff --git a/test/old/testdir/test_perl.vim b/test/old/testdir/test_perl.vim
index 37b1d08b1a..c08a042dae 100644
--- a/test/old/testdir/test_perl.vim
+++ b/test/old/testdir/test_perl.vim
@@ -94,6 +94,7 @@ func Test_buffer_Number()
endfunc
func Test_window_Cursor()
+ throw 'skipped: flaky '
new
call setline(1, ['line1', 'line2'])
perl $curwin->Cursor(2, 3)
@@ -104,7 +105,7 @@ func Test_window_Cursor()
endfunc
func Test_window_SetHeight()
- throw 'skipped: very flaky '
+ throw 'skipped: flaky '
new
perl $curwin->SetHeight(2)
call assert_equal(2, winheight(0))
diff --git a/test/unit/eval/typval_spec.lua b/test/unit/eval/typval_spec.lua
index 1cd5647a9e..a775bb48b4 100644
--- a/test/unit/eval/typval_spec.lua
+++ b/test/unit/eval/typval_spec.lua
@@ -3223,7 +3223,7 @@ describe('typval.c', function()
end)
end)
describe('lnum()', function()
- itp('works', function()
+ pending('works (skip due to flakiness)', function()
for _, v in ipairs({
{ lib.VAR_NUMBER, { v_number = 42 }, nil, 42 },
{ lib.VAR_STRING, { v_string = to_cstr('100500') }, nil, 100500 },