comparison src/testdir/test_vim9_expr.vim @ 21311:e16619de8771 v8.2.1206

patch 8.2.1206: Vim9: crash in expr test when run in the GUI Commit: https://github.com/vim/vim/commit/1bce831e13c42daa3563c7f90432d9bd9b959b81 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Jul 13 23:22:54 2020 +0200 patch 8.2.1206: Vim9: crash in expr test when run in the GUI Problem: Vim9: crash in expr test when run in the GUI. Solution: Temporarily comment out two test lines.
author Bram Moolenaar <Bram@vim.org>
date Mon, 13 Jul 2020 23:30:03 +0200
parents 31a3f4d408b9
children e641f678bdb9
comparison
equal deleted inserted replaced
21310:25bce8cbd428 21311:e16619de8771
1561 module: ''} 1561 module: ''}
1562 ], getloclist(0)) 1562 ], getloclist(0))
1563 enddef 1563 enddef
1564 1564
1565 func Test_expr7_trailing_fails() 1565 func Test_expr7_trailing_fails()
1566 call CheckDefFailure(['let l = [2]', 'l->{l -> add(l, 8)}'], 'E107') 1566 " Temporarily commented out - somehow crash occurs with too many
1567 call CheckDefFailure(['let l = [2]', 'l->{l -> add(l, 8)} ()'], 'E274') 1567 " CheckDefFailure calls in the GUI only.
1568 " call CheckDefFailure(['let l = [2]', 'l->{l -> add(l, 8)}'], 'E107')
1569 " call CheckDefFailure(['let l = [2]', 'l->{l -> add(l, 8)} ()'], 'E274')
1568 endfunc 1570 endfunc
1569 1571
1570 func Test_expr_fails() 1572 func Test_expr_fails()
1571 call CheckDefFailure(["let x = '1'is2"], 'E488:') 1573 call CheckDefFailure(["let x = '1'is2"], 'E488:')
1572 call CheckDefFailure(["let x = '1'isnot2"], 'E488:') 1574 call CheckDefFailure(["let x = '1'isnot2"], 'E488:')