Lines Matching refs:opt
567 for opt in ['-Y', '--does-not-exist']
568 let out = split(system(GetVimCommand() .. ' ' .. opt), "\n")
571 call assert_equal('Unknown option argument: "' .. opt .. '"', out[1])
575 for opt in ['-c', '-i', '-s', '-t', '-T', '-u', '-U', '-w', '-W', '--cmd', '--startuptime']
576 let out = split(system(GetVimCommand() .. ' ' .. opt), "\n")
579 call assert_equal('Argument missing after: "' .. opt .. '"', out[1])
584 for opt in ['--remote', '--remote-send', '--remote-silent', '--remote-expr',
590 let out = split(system(GetVimCommand() .. ' ' .. opt), "\n")
593 call assert_equal('Argument missing after: "' .. opt .. '"', out[1])
628 for opt in ['-t', '-q']
629 let out = split(system(GetVimCommand() .. repeat(' ' .. opt .. ' foo', 2)), "\n")
632 call assert_equal('Too many edit arguments: "' .. opt .. '"', out[1])
637 for opt in [' -cq', ' --cmd q', ' +', ' -S foo']
638 let out = split(system(GetVimCommand() .. repeat(opt, 11)), "\n")
654 for opt in ['--socketid x', '--socketid 0xg']
655 let out = split(system(GetVimCommand() .. ' ' .. opt), "\n")