diff options
| author | Jurica Bradaric <jurica.bradaric@avl.com> | 2017-03-07 19:20:07 +0100 |
|---|---|---|
| committer | Jurica Bradaric <jbradaric@gmail.com> | 2017-03-20 21:40:41 +0100 |
| commit | b4cb5fa610903492f89a70d0ae2d4565ddcd1228 (patch) | |
| tree | 9544a40910656950dcde49955a676c176f12af37 /src/nvim/testdir/test_expr.vim | |
| parent | df1e7b7edaf6c2ab9435d3734488c74a278f64a1 (diff) | |
| download | rneovim-b4cb5fa610903492f89a70d0ae2d4565ddcd1228.tar.gz rneovim-b4cb5fa610903492f89a70d0ae2d4565ddcd1228.tar.bz2 rneovim-b4cb5fa610903492f89a70d0ae2d4565ddcd1228.zip | |
vim-patch:7.4.2266
Problem: printf() test fails on Windows. "-inf" is not used.
Solution: Check for Windows-specific values for "nan". Add sign to "inf"
when appropriate.
https://github.com/vim/vim/commit/9992237a3e791fbc0c1ebf743ece1b75e1488410
Diffstat (limited to 'src/nvim/testdir/test_expr.vim')
| -rw-r--r-- | src/nvim/testdir/test_expr.vim | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/nvim/testdir/test_expr.vim b/src/nvim/testdir/test_expr.vim index 7f7811dc7a..fc804f3a15 100644 --- a/src/nvim/testdir/test_expr.vim +++ b/src/nvim/testdir/test_expr.vim @@ -201,12 +201,10 @@ function Test_printf_float() call assert_equal('inf', printf('%f', 1.0/0.0)) - " This prints inf but shouldn't it print -inf instead? - call assert_match('^-\?inf$', printf('%f', -1.0/0.0)) + call assert_match('^-inf$', printf('%f', -1.0/0.0)) - " This prints -nan but shouldn't it print nan instead? - call assert_match('^-\?nan$', printf('%f', sqrt(-1.0))) - call assert_match('^-\?nan$', printf('%f', 0.0/0.0)) + call assert_match('^nan$', printf('%f', sqrt(-1.0))) + call assert_match('^nan$', printf('%f', 0.0/0.0)) call assert_fails('echo printf("%f", "a")', 'E807:') endfunc |