comparison src/testdir/test_vim9_script.vim @ 25846:8b0dad68e98a v8.2.3457

patch 8.2.3457: MS-Windows Vim9: test executed and fails Commit: https://github.com/vim/vim/commit/b16ff292ad5f07ed5a7e36a2236b2f82c943c982 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Sep 26 20:14:39 2021 +0100 patch 8.2.3457: MS-Windows Vim9: test executed and fails Problem: MS-Windows Vim9: test executed and fails. Solution: Add extra check for not being on MS-Windows.
author Bram Moolenaar <Bram@vim.org>
date Sun, 26 Sep 2021 21:15:02 +0200
parents 33ebec729787
children f773ef3c641d
comparison
equal deleted inserted replaced
25845:dfc63ec98836 25846:8b0dad68e98a
4276 4276
4277 def Test_no_unknown_error_after_error() 4277 def Test_no_unknown_error_after_error()
4278 if !has('unix') || !has('job') 4278 if !has('unix') || !has('job')
4279 throw 'Skipped: not unix of missing +job feature' 4279 throw 'Skipped: not unix of missing +job feature'
4280 endif 4280 endif
4281 # FIXME: this check should not be needed
4282 if has('win32')
4283 throw 'Skipped: does not work on MS-Windows'
4284 endif
4281 var lines =<< trim END 4285 var lines =<< trim END
4282 vim9script 4286 vim9script
4283 var source: list<number> 4287 var source: list<number>
4284 def Out_cb(...l: list<any>) 4288 def Out_cb(...l: list<any>)
4285 eval [][0] 4289 eval [][0]