Home | History | Annotate | Download | only in unit-tests

Lines Matching refs:The

3 # Tests for the combination of the options -j and -n, which prints the
6 # The format of the output differs from the output of only the -n option,
7 # without the -j. This is because all this code is implemented twice, once
12 # The corresponding tests without the -n option
14 # The corresponding tests without the -j option
18 # Change the templates for running the commands in jobs mode, to make it
21 # The shell attributes are handled by Job_ParseShell.
22 # The shell attributes 'quiet' and 'echo' don't need a trailing newline,
23 # this is handled by the [0] != '\0' checks in Job_ParseShell.
24 # The '\#' is handled by ParseRawLine.
25 # The '\n' is handled by Str_Words in Job_ParseShell.
26 # The '$$' is handled by Var_Subst in ParseDependencyLine.
40 # Explain the most basic cases in detail.
44 # The following command is regular, it is printed twice:
45 # - first using the template shell.echoTmpl,
46 # - then using the template shell.runChkTmpl.
49 # The following command is silent, it is printed once, using the
53 # The following command ignores errors, it is printed once, using
54 # the default template for cmdTemplate, which is "%s\n".
56 # XXX: The '-' should not influence the echoing of the command.
59 # The following command ignores the -n command line option, it is
60 # not handled by the Job module but by the Compat module, see the
62 +echo run despite the -n option
68 # Test all combinations of the 3 RunFlags.
70 # TODO: Closely inspect the output whether it makes sense.
71 # XXX: silent=no always=no ignerr={no,yes} should be almost the same.