comparison src/testdir/test_channel.vim @ 8443:6c421014a0b3 v7.4.1512

commit https://github.com/vim/vim/commit/94d0191dbcce829ad9b92d902b6e2717041db3b8 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Mar 8 13:48:51 2016 +0100 patch 7.4.1512 Problem: Channel input from file not supported on MS-Windows. Solution: Implement it. (Yasuhiro Matsumoto)
author Christian Brabandt <cb@256bit.org>
date Tue, 08 Mar 2016 14:00:05 +0100
parents 541ca10b3bc7
children 6f26b680c243
comparison
equal deleted inserted replaced
8442:d2dd8de62539 8443:6c421014a0b3
536 536
537 func Test_nl_read_file() 537 func Test_nl_read_file()
538 if !has('job') 538 if !has('job')
539 return 539 return
540 endif 540 endif
541 " TODO: make this work for MS-Windows.
542 if !has('unix')
543 return
544 endif
545 call ch_log('Test_nl_read_file()') 541 call ch_log('Test_nl_read_file()')
546 call writefile(['echo something', 'echoerr wrong', 'double this'], 'Xinput') 542 call writefile(['echo something', 'echoerr wrong', 'double this'], 'Xinput')
547 let job = job_start(s:python . " test_channel_pipe.py", 543 let job = job_start(s:python . " test_channel_pipe.py",
548 \ {'in-io': 'file', 'in-name': 'Xinput'}) 544 \ {'in-io': 'file', 'in-name': 'Xinput'})
549 call assert_equal("run", job_status(job)) 545 call assert_equal("run", job_status(job))