Mercurial > vim
changeset 13744:d6553cde1292 v8.0.1744
patch 8.0.1744: on some systems /dev/stdout isn't writable
commit https://github.com/vim/vim/commit/9980b37a80dc72eef05bf8862aaf475ab17790a5
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Apr 21 20:12:35 2018 +0200
patch 8.0.1744: on some systems /dev/stdout isn't writable
Problem: On some systems /dev/stdout isn't writable.
Solution: Skip test if writing is not possible. (James McCoy, closes https://github.com/vim/vim/issues/2830)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sat, 21 Apr 2018 20:15:08 +0200 |
parents | c1ca4471e8c2 |
children | b8d9c3a2e7f9 |
files | src/testdir/test_writefile.vim src/version.c |
diffstat | 2 files changed, 8 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/testdir/test_writefile.vim +++ b/src/testdir/test_writefile.vim @@ -105,6 +105,10 @@ func Test_writefile_sync_dev_stdout() if !has('unix') return endif - " Just check that this doesn't cause an error. - call writefile(['one'], '/dev/stdout') + if filewritable('/dev/stdout') + " Just check that this doesn't cause an error. + call writefile(['one'], '/dev/stdout') + else + throw 'Skipped: /dev/stdout is not writable' + endif endfunc