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

Lines Matching refs:backslash

3 # Test backslash escaping.
11 # When an escaped <newline> (one preceded by a <backslash>) is found
18 # makefile, the command line shall contain the <backslash>, the
26 # Notice that the behaviour of <backslash><backslash> or
27 # <backslash><anything other than newline> is not mentioned. I think
28 # this implies that <backslash> should be taken literally everywhere
50 # Backslash at end of line in a comment\
58 # Embedded backslash in variable should be taken literally.
65 VAR1BSc= 111\# backslash escapes comment char, so this is part of the value
66 VAR1BSsc= 111\ # This is a comment. Value ends with <backslash><space>
72 # Double backslash in variable should be taken as two literal backslashes.
79 VAR2BSc= 222\\# backslash does not escape comment char, so this is a comment
80 VAR2BSsc= 222\\ # This is a comment. Value ends with <backslash><backslash>
86 # In a variable assignment, when the sequence <backslash><newline> occurs at
110 # Double-backslash-newline in a variable setting.
137 # Triple-backslash-newline in a variable setting.
164 # Backslash-newline in a variable setting, plus any amount of white space
188 # Backslash-newline in a command is retained.
208 # When backslash-newline appears at the end of a command script,
209 # both the backslash and the newline should be passed to the shell.
210 # The shell should elide the backslash-newline.
215 echo :'command ending with backslash-newline'; \
219 # Double-backslash-newline in a command.
224 # backslash to the echo command.
234 # Triple-backslash-newline in a command is retained.