diff src/testdir/test_listdict.vim @ 29728:cadc9851377d v9.0.0204

patch 9.0.0204: indexof() may leak memory Commit: https://github.com/vim/vim/commit/63acae13f57c5ad4c8ec3146d0c458550b9e984e Author: Yegappan Lakshmanan <yegappan@yahoo.com> Date: Sun Aug 14 12:07:11 2022 +0100 patch 9.0.0204: indexof() may leak memory Problem: indexof() may leak memory. Solution: Free allocated values. (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/10916)
author Bram Moolenaar <Bram@vim.org>
date Sun, 14 Aug 2022 13:15:04 +0200
parents bdb31515f78b
children 34151eb6ae25
line wrap: on
line diff
--- a/src/testdir/test_listdict.vim
+++ b/src/testdir/test_listdict.vim
@@ -1462,7 +1462,13 @@ func Test_indexof()
   call assert_equal(-1, indexof(l, "v:val.n == 10", #{startidx: -4}))
   call assert_equal(0, indexof(l, "v:val.n == 10", test_null_dict()))
 
+  let s = ["a", "b", "c"]
+  call assert_equal(2, indexof(s, {_, v -> v == 'c'}))
+  call assert_equal(-1, indexof(s, {_, v -> v == 'd'}))
+  call assert_equal(-1, indexof(s, {_, v -> "v == 'd'"}))
+
   call assert_equal(-1, indexof([], {i, v -> v == 'a'}))
+  call assert_equal(-1, indexof([1, 2, 3], {_, v -> "v == 2"}))
   call assert_equal(-1, indexof(test_null_list(), {i, v -> v == 'a'}))
   call assert_equal(-1, indexof(l, test_null_string()))
   call assert_equal(-1, indexof(l, test_null_function()))