aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-11-23 12:03:36 -0800
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-11-23 12:03:36 -0800
commitbf27cb1f5e16d23ddba01bd4678563f2d8c2ccf6 (patch)
treeaf2ca27f97bfd237f5bfaaaa39d2f937e982c088 /tests
parent654010f639f05486423cfb60f1a64de3bdc55699 (diff)
Further fixes to newline escaping
Diffstat (limited to 'tests')
-rw-r--r--tests/test1.in6
-rw-r--r--tests/test1.out3
2 files changed, 9 insertions, 0 deletions
diff --git a/tests/test1.in b/tests/test1.in
index 159c9cf8..4c261e10 100644
--- a/tests/test1.in
+++ b/tests/test1.in
@@ -24,6 +24,12 @@ bar"
echo 'foo\
bar'
+for i in \
+ a b c
+ echo $i
+end
+
+
# Simple alias tests
function foo
diff --git a/tests/test1.out b/tests/test1.out
index 52538b19..13219ff3 100644
--- a/tests/test1.out
+++ b/tests/test1.out
@@ -10,6 +10,9 @@ foobar
foobar
foo\
bar
+a
+b
+c
Test 2 pass
Test pass
Test 3 pass