diff options
author | Mike Frysinger <vapier@gentoo.org> | 2009-03-28 21:06:38 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2009-03-28 21:06:38 +0000 |
commit | 0b87e4ad1515831006618649f8afffd6c0b78f78 (patch) | |
tree | 1e7a5b7811036d3e9dfad74c94d7fd89d5bddbfa /shell/hush_test/hush-vars/var3.tests | |
parent | 7c3e52c1bd33fe4028e106dbff3e0a876064afd2 (diff) |
test for invalid named variables
Diffstat (limited to 'shell/hush_test/hush-vars/var3.tests')
-rwxr-xr-x | shell/hush_test/hush-vars/var3.tests | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/shell/hush_test/hush-vars/var3.tests b/shell/hush_test/hush-vars/var3.tests new file mode 100755 index 000000000..2947fccee --- /dev/null +++ b/shell/hush_test/hush-vars/var3.tests @@ -0,0 +1,4 @@ +# reject invalid vars +hush -c 'echo ${1q}' +hush -c 'echo ${&}' +hush -c 'echo ${$}' |