diff options
Diffstat (limited to 'Test')
-rw-r--r-- | Test/D04parameter.ztst | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/Test/D04parameter.ztst b/Test/D04parameter.ztst index c41e05ed3..d06a73afd 100644 --- a/Test/D04parameter.ztst +++ b/Test/D04parameter.ztst @@ -1704,7 +1704,10 @@ [[ $funnychars = ${~${(b)funnychars}} ]] 0:${(b)...} quoting protects from GLOB_SUBST - set -- - print $#-1 -0:Avoid confusion after overloaded characters in braceless substitution + set -- foo + echo $(( $#*3 )) + emulate sh -c 'nolenwithoutbrace() { echo $#-1; }' + nolenwithoutbrace +0:Avoid confusion after overloaded characters in braceless substitution in sh +>13 >0-1 |