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

Lines Matching refs:the

3 # Tests for the variable modifier ':@', which as a side effect allows to
6 # A side effect of the modifier ':@' is that the loop variable is created as
7 # an actual variable in the current evaluation scope (Command/Global/target),
8 # and at the end of the loop, this variable is deleted. Since var.c 1.204
12 # See Var_Parse, comment 'the value of the variable must not change'.
14 # Set up the variable that deletes itself when it is evaluated.
15 VAR= ${:U:@VAR@@} rest of the value
17 # In an assignment, the scope is 'Global'. Since the variable 'VAR' is
18 # defined in the global scope, it deletes itself.
21 .if ${EVAL} != " rest of the value"
25 VAR= ${:U:@VAR@@} rest of the value
27 # In the command that is associated with a target, the scope is the
28 # one from the target. That scope only contains a few variables like
30 # variables get modified from the outside.
32 # There is no variable named 'VAR' in the local scope, so nothing