From 1a7358612ff2dfdfc9fa461faa946c577666787f Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Wed, 23 May 2007 00:32:25 +0000 Subject: hush: fix a bit different instance of "No EOL" bug, add testsuite for that. Expand another testsuite. --- shell/hush_test/hush-parsing/noeol2.right | 1 + shell/hush_test/hush-parsing/noeol2.tests | 7 +++++++ shell/hush_test/hush-vars/star.right | 1 + shell/hush_test/hush-vars/star.tests | 4 ++-- 4 files changed, 11 insertions(+), 2 deletions(-) create mode 100644 shell/hush_test/hush-parsing/noeol2.right create mode 100755 shell/hush_test/hush-parsing/noeol2.tests (limited to 'shell/hush_test') diff --git a/shell/hush_test/hush-parsing/noeol2.right b/shell/hush_test/hush-parsing/noeol2.right new file mode 100644 index 0000000..d00491f --- /dev/null +++ b/shell/hush_test/hush-parsing/noeol2.right @@ -0,0 +1 @@ +1 diff --git a/shell/hush_test/hush-parsing/noeol2.tests b/shell/hush_test/hush-parsing/noeol2.tests new file mode 100755 index 0000000..1220f05 --- /dev/null +++ b/shell/hush_test/hush-parsing/noeol2.tests @@ -0,0 +1,7 @@ +# last line has no EOL! +if true +then + echo 1 +else + echo 2 +fi \ No newline at end of file diff --git a/shell/hush_test/hush-vars/star.right b/shell/hush_test/hush-vars/star.right index b33b176..0ecc55b 100644 --- a/shell/hush_test/hush-vars/star.right +++ b/shell/hush_test/hush-vars/star.right @@ -3,3 +3,4 @@ .d. .e. .f. +.1 abc d e f. diff --git a/shell/hush_test/hush-vars/star.tests b/shell/hush_test/hush-vars/star.tests index 1914dde..5554c40 100755 --- a/shell/hush_test/hush-vars/star.tests +++ b/shell/hush_test/hush-vars/star.tests @@ -4,5 +4,5 @@ fi # 'd e f' should be split into 3 separate args: for a in $*; do echo ".$a."; done -# must produce .1 abc d e f. Currently does not -#for a in "$*"; do echo ".$a."; done +# must produce .1 abc d e f. +for a in "$*"; do echo ".$a."; done -- cgit v1.1