Lines Matching refs:out
126 " Watch out for a second --version line in the Gnome version.
268 let out = system(GetVimCommand() . ' --clean -es -X -V0 -c "set verbose?" -cq')
269 call assert_equal(" verbose=0\n", out)
271 let out = system(GetVimCommand() . ' --clean -es -X -V2 -c "set verbose?" -cq')
272 …RUNTIME[\\/]defaults\.vim\"\r\nline \\d\\+: sourcing \"[^\"]*runtime[\\/]filetype\.vim\".*\n", out)
273 call assert_match(" verbose=2\n", out)
275 let out = system(GetVimCommand() . ' --clean -es -X -V15 -c "set verbose?" -cq')
276 …ing \"$VIMRUNTIME[\\/]defaults\.vim\"\r\nline 1: \" The default vimrc file\..* verbose=15\n", out)
288 let out = system('VIMRUNTIME=/tmp ' .. GetVimCommand() .. ' --clean -cq')
289 call assert_match("E1187: Failed to source defaults.vim", out)
291 let out = system('VIMRUNTIME=/tmp ' .. GetVimCommand() .. ' -u DEFAULTS -cq')
292 call assert_match("E1187: Failed to source defaults.vim", out)
349 let out = system(GetVimCommand() .. ' -q xyz.err')
361 let out = join(readfile('Xverbosefile'), "\n")
362 call assert_match("sourcing \"$VIMRUNTIME[\\/]defaults\.vim\"\n", out)
363 call assert_match("\n verbose=2\n", out)
364 call assert_match("\n verbosefile=Xverbosefile", out)
568 let out = split(system(GetVimCommand() .. ' ' .. opt), "\n")
570 call assert_match('^VIM - Vi IMproved .* (.*)$', out[0])
571 call assert_equal('Unknown option argument: "' .. opt .. '"', out[1])
572 call assert_equal('More info with: "vim -h"', out[2])
576 let out = split(system(GetVimCommand() .. ' ' .. opt), "\n")
578 call assert_match('^VIM - Vi IMproved .* (.*)$', out[0])
579 call assert_equal('Argument missing after: "' .. opt .. '"', out[1])
580 call assert_equal('More info with: "vim -h"', out[2])
590 let out = split(system(GetVimCommand() .. ' ' .. opt), "\n")
592 call assert_match('^VIM - Vi IMproved .* (.*)$', out[0])
593 call assert_equal('Argument missing after: "' .. opt .. '"', out[1])
594 call assert_equal('More info with: "vim -h"', out[2])
599 let out = split(system(GetVimCommand() .. ' --display'), "\n")
601 call assert_match('^VIM - Vi IMproved .* (.*)$', out[0])
602 call assert_equal('Argument missing after: "--display"', out[1])
603 call assert_equal('More info with: "vim -h"', out[2])
607 let out = split(system(GetVimCommand() .. ' -display'), "\n")
609 call assert_match('^VIM - Vi IMproved .* (.*)$', out[0])
610 call assert_equal('Argument missing after: "-display"', out[1])
611 call assert_equal('More info with: "vim -h"', out[2])
614 let out = split(system(GetVimCommand() .. ' -ix'), "\n")
616 call assert_match('^VIM - Vi IMproved .* (.*)$', out[0])
617 call assert_equal('Garbage after option argument: "-ix"', out[1])
618 call assert_equal('More info with: "vim -h"', out[2])
620 let out = split(system(GetVimCommand() .. ' - xxx'), "\n")
622 call assert_match('^VIM - Vi IMproved .* (.*)$', out[0])
623 call assert_equal('Too many edit arguments: "xxx"', out[1])
624 call assert_equal('More info with: "vim -h"', out[2])
629 let out = split(system(GetVimCommand() .. repeat(' ' .. opt .. ' foo', 2)), "\n")
631 call assert_match('^VIM - Vi IMproved .* (.*)$', out[0])
632 call assert_equal('Too many edit arguments: "' .. opt .. '"', out[1])
633 call assert_equal('More info with: "vim -h"', out[2])
638 let out = split(system(GetVimCommand() .. repeat(opt, 11)), "\n")
642 call assert_match('^VIM - Vi IMproved .* (.*)$', out[0])
643 call assert_equal('Too many "+command", "-c command" or "--cmd command" arguments', out[1])
644 call assert_equal('More info with: "vim -h"', out[2])
648 let out = split(system(GetVimCommand() .. ' --socketid'), "\n")
650 call assert_match('^VIM - Vi IMproved .* (.*)$', out[0])
651 call assert_equal('Argument missing after: "--socketid"', out[1])
652 call assert_equal('More info with: "vim -h"', out[2])
655 let out = split(system(GetVimCommand() .. ' ' .. opt), "\n")
657 call assert_match('^VIM - Vi IMproved .* (.*)$', out[0])
658 call assert_equal('Invalid argument for: "--socketid"', out[1])
659 call assert_equal('More info with: "vim -h"', out[2])
763 …let out = system(GetVimCommand() . '-u NONE -es -c''set verbose=1|h|exe "%norm\<c-y>\<c-d>"'' -c c…
764 call assert_notmatch('E315:', out)
774 let out = system(GetVimCommand() . ' -c''set term'' -c cq')
775 call assert_match("defaulting to 'ansi'", out)
810 let out = system(GetVimCommand() . ' -es -X -V1 -c "echon ''hello''" -cq')
811 call assert_equal('hello', out)
828 let out = system(GetVimCommand() . ' -es -V1 -X arg1 --cmd "echo v:argv" --cmd q')
829 let list = out->split("', '")