We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a26f34a commit cbf3bd1Copy full SHA for cbf3bd1
test/run.vim
@@ -26,11 +26,15 @@ function! s:run()
26
endtry
27
if system(printf('diff %s %s', shellescape(okfile), shellescape(outfile))) == ""
28
let line = printf('%s => ok', fnamemodify(vimfile, ':.'))
29
+ call append(line('$'), line)
30
else
31
let line = printf('%s => ng', fnamemodify(vimfile, ':.'))
32
33
+ for line in readfile(outfile)
34
+ call append(line('$'), ' ' . line)
35
+ endfor
36
let ng += 1
37
endif
- call append(line('$'), line)
38
endfor
39
if $CI == 'true'
40
call writefile(getline(1, '$'), 'test.log')
0 commit comments