comparison src/testdir/test_vimscript.vim @ 30455:b4c9540577cf v9.0.0563

patch 9.0.0563: timer_info() test fails Commit: https://github.com/vim/vim/commit/a9b0f8f7f35ddd281f4fa464d163dc4fb05e1d7b Author: Bram Moolenaar <Bram@vim.org> Date: Fri Sep 23 21:01:54 2022 +0100 patch 9.0.0563: timer_info() test fails Problem: Timer_info() test fails. Solution: Ignore test timeout timer. Don't use test_null_job() when not available.
author Bram Moolenaar <Bram@vim.org>
date Fri, 23 Sep 2022 22:15:03 +0200
parents 56e38195570b
children f936d46cc9c1
comparison
equal deleted inserted replaced
30454:49a0f45ab2aa 30455:b4c9540577cf
7215 call assert_equal(0, test_refcount(d.Func)) 7215 call assert_equal(0, test_refcount(d.Func))
7216 call d.Func() 7216 call d.Func()
7217 unlet d 7217 unlet d
7218 delfunc DictFunc 7218 delfunc DictFunc
7219 7219
7220 call assert_equal(-1, test_refcount(test_null_job())) 7220 if has('channel')
7221 call assert_equal(-1, test_refcount(test_null_channel())) 7221 call assert_equal(-1, test_refcount(test_null_job()))
7222 call assert_equal(-1, test_refcount(test_null_channel()))
7223 endif
7222 call assert_equal(-1, test_refcount(test_null_function())) 7224 call assert_equal(-1, test_refcount(test_null_function()))
7223 call assert_equal(-1, test_refcount(test_null_partial())) 7225 call assert_equal(-1, test_refcount(test_null_partial()))
7224 call assert_equal(-1, test_refcount(test_null_blob())) 7226 call assert_equal(-1, test_refcount(test_null_blob()))
7225 call assert_equal(-1, test_refcount(test_null_list())) 7227 call assert_equal(-1, test_refcount(test_null_list()))
7226 call assert_equal(-1, test_refcount(test_null_dict())) 7228 call assert_equal(-1, test_refcount(test_null_dict()))