summaryrefslogtreecommitdiffstats
path: root/src/testdir/test_normal.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-09-02 21:55:50 +0100
committerBram Moolenaar <Bram@vim.org>2022-09-02 21:55:50 +0100
commitb18b49699776485150b71626069a40d12d2c5590 (patch)
treee583af125f2624cedd5420ba218f9628b122e209 /src/testdir/test_normal.vim
parentf5724376ab7362b5a98eaa8a331d663ef722c2a2 (diff)
patch 9.0.0363: common names in test files causes tests to be flakyv9.0.0363
Problem: Common names in test files causes tests to be flaky. Solution: Use more specific names.
Diffstat (limited to 'src/testdir/test_normal.vim')
-rw-r--r--src/testdir/test_normal.vim24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/testdir/test_normal.vim b/src/testdir/test_normal.vim
index 86f0ef656b..352c609481 100644
--- a/src/testdir/test_normal.vim
+++ b/src/testdir/test_normal.vim
@@ -1709,14 +1709,14 @@ endfunc
func Test_normal20_exmode()
" Reading from redirected file doesn't work on MS-Windows
CheckNotMSWindows
- call writefile(['1a', 'foo', 'bar', '.', 'w! Xfile2', 'q!'], 'Xscript')
- call writefile(['1', '2'], 'Xfile')
- call system(GetVimCommand() .. ' -e -s < Xscript Xfile')
- let a=readfile('Xfile2')
+ call writefile(['1a', 'foo', 'bar', '.', 'w! Xn20file2', 'q!'], 'Xn20script')
+ call writefile(['1', '2'], 'Xn20file')
+ call system(GetVimCommand() .. ' -e -s < Xn20script Xn20file')
+ let a=readfile('Xn20file2')
call assert_equal(['1', 'foo', 'bar', '2'], a)
" clean up
- for file in ['Xfile', 'Xfile2', 'Xscript']
+ for file in ['Xn20file', 'Xn20file2', 'Xn20script']
call delete(file)
endfor
bw!
@@ -1758,22 +1758,22 @@ func Test_normal22_zet()
" Test for ZZ
" let shell = &shell
" let &shell = 'sh'
- call writefile(['1', '2'], 'Xfile')
+ call writefile(['1', '2'], 'Xn22file')
let args = ' -N -i NONE --noplugins -X --not-a-term'
- call system(GetVimCommand() .. args .. ' -c "%d" -c ":norm! ZZ" Xfile')
- let a = readfile('Xfile')
+ call system(GetVimCommand() .. args .. ' -c "%d" -c ":norm! ZZ" Xn22file')
+ let a = readfile('Xn22file')
call assert_equal([], a)
" Test for ZQ
- call writefile(['1', '2'], 'Xfile')
- call system(GetVimCommand() . args . ' -c "%d" -c ":norm! ZQ" Xfile')
- let a = readfile('Xfile')
+ call writefile(['1', '2'], 'Xn22file')
+ call system(GetVimCommand() . args . ' -c "%d" -c ":norm! ZQ" Xn22file')
+ let a = readfile('Xn22file')
call assert_equal(['1', '2'], a)
" Unsupported Z command
call assert_beeps('normal! ZW')
" clean up
- for file in ['Xfile']
+ for file in ['Xn22file']
call delete(file)
endfor
" let &shell = shell