remove msh_function.patch. msh is deprecated
[oweals/busybox.git] / shell / hush_test / hush-psubst / tick3.tests
1 test "$CONFIG_FEATURE_FANCY_ECHO" = "y" || exit 77
2
3 TEST=Q
4 # \` is special
5 echo `echo '\'TEST\`echo ZZ\`BEST`
6 # \$ and \\ are special
7 echo `echo \\$TEST`
8 echo `echo \$TEST`
9 echo a`echo \\\\b`c
10 # \" etc are NOT special (passed verbatim WITH \)!
11 echo a`echo \"`c
12 echo done:$?