hush/shell/hush_test/hush-vars/param_expand_indicate_error.tests

41 lines
1.2 KiB
Plaintext
Raw Normal View History

2009-03-28 18:55:34 +00:00
# do all of these in subshells since it's supposed to error out
# first try some invalid patterns
"$THIS_SH" -c 'echo ${?}'
"$THIS_SH" -c 'echo ${:?}'
2009-03-28 18:55:34 +00:00
# then some funky ones
"$THIS_SH" -c 'echo ${#?}'
"$THIS_SH" -c 'echo ${#:?}'
2009-03-28 18:55:34 +00:00
# now some valid ones
"$THIS_SH" -c 'set --; echo _$1'
"$THIS_SH" -c 'set --; echo _${1?}'
"$THIS_SH" -c 'set --; echo _${1:?}'
"$THIS_SH" -c 'set --; echo _${1?message1}'
"$THIS_SH" -c 'set --; echo _${1:?message1}'
2009-03-28 18:55:34 +00:00
"$THIS_SH" -c 'set -- aaaa; echo _$1'
"$THIS_SH" -c 'set -- aaaa; echo _${1?}'
"$THIS_SH" -c 'set -- aaaa; echo _${1:?}'
"$THIS_SH" -c 'set -- aaaa; echo _${1?word}'
"$THIS_SH" -c 'set -- aaaa; echo _${1:?word}'
2009-03-28 18:55:34 +00:00
"$THIS_SH" -c 'unset f; echo _$f'
"$THIS_SH" -c 'unset f; echo _${f?}'
"$THIS_SH" -c 'unset f; echo _${f:?}'
"$THIS_SH" -c 'unset f; echo _${f?message3}'
"$THIS_SH" -c 'unset f; echo _${f:?message3}'
2009-03-28 18:55:34 +00:00
"$THIS_SH" -c 'f=; echo _$f'
"$THIS_SH" -c 'f=; echo _${f?}'
"$THIS_SH" -c 'f=; echo _${f:?}'
"$THIS_SH" -c 'f=; echo _${f?word}'
"$THIS_SH" -c 'f=; echo _${f:?message4}'
2009-03-28 18:55:34 +00:00
"$THIS_SH" -c 'f=fff; echo _$f'
"$THIS_SH" -c 'f=fff; echo _${f?}'
"$THIS_SH" -c 'f=fff; echo _${f:?}'
"$THIS_SH" -c 'f=fff; echo _${f?word}'
"$THIS_SH" -c 'f=fff; echo _${f:?word}'