view src/testdir/test_terminal_fail.vim @ 13525:7d0a8ca17f30 v8.0.1636

patch 8.0.1636: no test for term_dumpload() and term_dumpdiff() commit https://github.com/vim/vim/commit/45d2a64f964238753403017b6d0ef30be88ccf37 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Mar 24 14:30:32 2018 +0100 patch 8.0.1636: no test for term_dumpload() and term_dumpdiff() Problem: No test for term_dumpload() and term_dumpdiff(). Solution: Add tests.
author Christian Brabandt <cb@256bit.org>
date Sat, 24 Mar 2018 14:45:06 +0100
parents e9dbdc4d8279
children f38fcbf343ce
line wrap: on
line source

" This test is in a separate file, because it usually causes reports for memory
" leaks under valgrind.  That is because when fork/exec fails memory is not
" freed.  Since the process exists right away it's not a real leak.

if !has('terminal')
  finish
endif

source shared.vim

func Test_terminal_redir_fails()
  if has('unix')
    let buf = term_start('xyzabc', {'err_io': 'file', 'err_name': 'Xfile'})
    call term_wait(buf)
    call WaitFor('len(readfile("Xfile")) > 0')
    call assert_match('executing job failed', readfile('Xfile')[0])
    call WaitFor('!&modified')
    call delete('Xfile')
    bwipe
  endif
endfunc