Lines Matching full:variable
3 # Tests for the = variable assignment operator, which overwrites an existing
4 # variable or creates it.
6 # This is a simple variable assignment.
7 # To the left of the assignment operator '=' there is the variable name,
8 # and to the right is the variable value. The variable value is stored as-is,
21 # The variable value can contain arbitrary characters.
28 # another variable.
38 # The variable value may contain references to other variables.
39 # In this example, the reference is to the variable with the empty name,
42 # This alone would not produce any side-effects, therefore the variable has
48 # when the variable is defined, the first command is not run at all.
52 # Now force the variable to be evaluated.
57 # In a variable assignment, the variable name must consist of a single word.
59 # expect+1: Invalid line 'VARIABLE NAME= variable value'
60 VARIABLE NAME= variable value
65 # XXX: This was not an intentional decision, as variable names typically
67 # the implementation of the parser, which cheats when parsing a variable
74 # Be careful and use indirect variable names here, to prevent accidentally
75 # accepting the test in case the parser just uses "VAR" as the variable name,
89 # In safe mode, parsing would stop immediately after the "VARIABLE NAME="
91 # unexpected variable values.