diff options
Diffstat (limited to 'tests/escaping')
-rw-r--r-- | tests/escaping/buildfile | 13 | ||||
-rw-r--r-- | tests/escaping/test.out | 4 | ||||
-rwxr-xr-x | tests/escaping/test.sh | 3 |
3 files changed, 20 insertions, 0 deletions
diff --git a/tests/escaping/buildfile b/tests/escaping/buildfile new file mode 100644 index 0000000..4259087 --- /dev/null +++ b/tests/escaping/buildfile @@ -0,0 +1,13 @@ +print \'single\' +print \"double\" + +# Newline is special. +# +\ +print foo\ +bar + +print foo \ +bar + +./: diff --git a/tests/escaping/test.out b/tests/escaping/test.out new file mode 100644 index 0000000..9894dde --- /dev/null +++ b/tests/escaping/test.out @@ -0,0 +1,4 @@ +'single' +"double" +foobar +foo bar diff --git a/tests/escaping/test.sh b/tests/escaping/test.sh new file mode 100755 index 0000000..b898b3c --- /dev/null +++ b/tests/escaping/test.sh @@ -0,0 +1,3 @@ +#!/bin/sh + +valgrind -q b -q | diff -u test.out - |