Lines Matching refs:command
248 my ($command, $expected, $hint) = @_;
259 $command = (split (' ', $command))[0];
262 fatal "failed to run $command: $!" . $hint;
273 "$command failed with exit status: $status",
280 fatal "$command terminated by signal: $signal";
284 fatal "$command exited abnormally";
299 my ($command) = @_;
301 verb "running: $command";
304 my $res = `$command`;
305 handle_exec_errors $command
321 my (@command) = @_;
323 verb "running: @command";
326 handle_exec_errors "@command"
327 if system @command;
340 my ($hint, @command) = @_;
342 verb "running: @command";
345 handle_exec_errors "@command", 0, $hint
346 if system @command;