From a43dba76ea394d789de67c6322b51e1d65bdba3b Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Sun, 2 Mar 2008 19:57:53 +0000 Subject: msh: create testsuite (based on hush one) hush: add TODO (doesn't know ":" command) --- shell/msh_test/msh-bugs/starquoted.tests | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 shell/msh_test/msh-bugs/starquoted.tests (limited to 'shell/msh_test/msh-bugs/starquoted.tests') diff --git a/shell/msh_test/msh-bugs/starquoted.tests b/shell/msh_test/msh-bugs/starquoted.tests new file mode 100755 index 0000000..2fe49b1 --- /dev/null +++ b/shell/msh_test/msh-bugs/starquoted.tests @@ -0,0 +1,8 @@ +if test $# = 0; then + exec "$THIS_SH" "$0" 1 abc 'd e f' +fi + +for a in "$*"; do echo ".$a."; done +for a in "$@"; do echo ".$a."; done +for a in "-$*-"; do echo ".$a."; done +for a in "-$@-"; do echo ".$a."; done -- cgit v1.1