Mercurial > vim
view src/testdir/test_autoload.vim @ 33791:370543108ba1 v9.0.2114
patch 9.0.2114: overflow detection not accurate when adding digits
Commit: https://github.com/vim/vim/commit/22cbc8a4e17ce61aa460c451a26e1bff2c3d2af9
Author: Christian Brabandt <cb@256bit.org>
Date: Sun Nov 19 10:47:21 2023 +0100
patch 9.0.2114: overflow detection not accurate when adding digits
Problem: overflow detection not accurate when adding digits
Solution: Use a helper function
Use a helper function to better detect overflows before adding integer
digits to a long or an integer variable respectively. Signal the
overflow to the caller function.
closes: #13539
Signed-off-by: Christian Brabandt <cb@256bit.org>
Signed-off-by: Michael Henry <vim@drmikehenry.com>
Signed-off-by: Ernie Rael <errael@raelity.com>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sun, 19 Nov 2023 11:00:07 +0100 |
parents | 307341b9c227 |
children | a786d0dab454 |
line wrap: on
line source
" Tests for autoload set runtimepath=./sautest func Test_autoload_dict_func() let g:loaded_foo_vim = 0 let g:called_foo_bar_echo = 0 call g:foo#bar.echo() call assert_equal(1, g:loaded_foo_vim) call assert_equal(1, g:called_foo_bar_echo) eval 'bar'->g:foo#addFoo()->assert_equal('barfoo') " empty name works in legacy script call assert_equal('empty', foo#()) endfunc func Test_source_autoload() let g:loaded_sourced_vim = 0 source sautest/autoload/sourced.vim call assert_equal(1, g:loaded_sourced_vim) endfunc func Test_autoload_vim9script() call assert_equal('some', auto9#Getsome()) call assert_equal(49, auto9#Add42(7)) endfunc " vim: shiftwidth=2 sts=2 expandtab