Home | History | Annotate | Download | only in lit

Lines Matching refs:commands

176     if cmd.commands[0].args[0] == 'cd':
177 if len(cmd.commands) != 1:
179 if len(cmd.commands[0].args) != 2:
181 newdir = cmd.commands[0].args[1]
199 for i,j in enumerate(cmd.commands):
292 if stderr == subprocess.PIPE and j != cmd.commands[-1]:
399 # Gather the redirected output files for failed commands.
413 cmd.commands[i], out, err, res, timeoutHelper.timeoutReached(),
438 def executeScriptInternal(test, litConfig, tmpBase, commands, cwd):
440 for ln in commands:
505 def executeScript(test, litConfig, tmpBase, commands, cwd):
518 f.write('\nif %ERRORLEVEL% NEQ 0 EXIT\n'.join(commands))
522 f.write('{ ' + '; } &&\n{ '.join(commands) + '; }')
548 parseIntegratedTestScriptCommands(source_path) -> commands
550 Parse the commands in an integrated test script file into a list of
557 # expression library to find the commands, with it scanning strings in
682 COMMAND: A Keyword taking a list of shell commands. Ex 'RUN:'