comparison src/testdir/test_writefile.vim @ 14669:63d5ae57a663 v8.1.0347

patch 8.1.0347: some tests fail on Solaris commit https://github.com/vim/vim/commit/f1c118be93184e8e57e3e80b1b3383f464ed649e Author: Bram Moolenaar <Bram@vim.org> Date: Mon Sep 3 22:08:10 2018 +0200 patch 8.1.0347: some tests fail on Solaris Problem: Some tests fail on Solaris. Solution: Skip writefile test. Fix path to libc.so. Improve test for Turkish case change. (Libor Bukata, Bjorn Linse, closes #3403)
author Christian Brabandt <cb@256bit.org>
date Mon, 03 Sep 2018 22:15:17 +0200
parents 96858d612aff
children 2dcaa860e3fc
comparison
equal deleted inserted replaced
14668:34fd018452ed 14669:63d5ae57a663
31 31
32 call assert_fails('call writefile([], [])', 'E730:') 32 call assert_fails('call writefile([], [])', 'E730:')
33 endfunc 33 endfunc
34 34
35 func Test_writefile_fails_conversion() 35 func Test_writefile_fails_conversion()
36 if !has('multi_byte') || !has('iconv') 36 if !has('multi_byte') || !has('iconv') || system('uname -s') =~ 'SunOS'
37 return 37 return
38 endif 38 endif
39 set nobackup nowritebackup 39 set nobackup nowritebackup
40 new 40 new
41 let contents = ["line one", "line two"] 41 let contents = ["line one", "line two"]