blob: f0f0c9f51e11812cba03b5d91a4fd1b7ae95b2eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
test.arguments += description-line
$* <" foo bar " >>EOO # full
' foo bar '
EOO
$* <" " >>EOO # space
' '
EOO
$* <"" >>EOO # empty
''
EOO
$* <:"foo" 2>>EOE != 0 # eof
stdin:1:4: error: expected newline at the end of description line
EOE
|