comparison src/testdir/test_listdict.vim @ 20156:49694eceaa55 v8.2.0633

patch 8.2.0633: crash when using null partial in filter() Commit: https://github.com/vim/vim/commit/9d8d0b5c644ea53364d04403740b3f23e57c1497 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Apr 24 22:47:31 2020 +0200 patch 8.2.0633: crash when using null partial in filter() Problem: Crash when using null partial in filter(). Solution: Fix crash. Add more tests. (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/5976)
author Bram Moolenaar <Bram@vim.org>
date Fri, 24 Apr 2020 23:00:04 +0200
parents fdf94ab9929b
children 94f05de75e9f
comparison
equal deleted inserted replaced
20155:f413c0207fd1 20156:49694eceaa55
941 call assert_equal('[]', string(l)) 941 call assert_equal('[]', string(l))
942 call assert_equal(0, sort(l)) 942 call assert_equal(0, sort(l))
943 call assert_equal(0, uniq(l)) 943 call assert_equal(0, uniq(l))
944 call assert_fails("let k = [] + l", 'E15:') 944 call assert_fails("let k = [] + l", 'E15:')
945 call assert_fails("let k = l + []", 'E15:') 945 call assert_fails("let k = l + []", 'E15:')
946 call assert_equal(0, len(copy(test_null_list())))
946 endfunc 947 endfunc
947 948
948 " Test for a null dict 949 " Test for a null dict
949 func Test_null_dict() 950 func Test_null_dict()
950 call assert_equal(test_null_dict(), test_null_dict()) 951 call assert_equal(test_null_dict(), test_null_dict())
957 call assert_equal(0, values(d)) 958 call assert_equal(0, values(d))
958 call assert_false(has_key(d, 'k')) 959 call assert_false(has_key(d, 'k'))
959 call assert_equal('{}', string(d)) 960 call assert_equal('{}', string(d))
960 call assert_fails('let x = test_null_dict()[10]') 961 call assert_fails('let x = test_null_dict()[10]')
961 call assert_equal({}, {}) 962 call assert_equal({}, {})
963 call assert_equal(0, len(copy(test_null_dict())))
962 endfunc 964 endfunc
963 965
964 " vim: shiftwidth=2 sts=2 expandtab 966 " vim: shiftwidth=2 sts=2 expandtab