diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-10-18 22:18:10 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-10-18 22:18:10 +0000 |
commit | 431a18497d2564529771cf40f5fbc5d86cc50516 (patch) | |
tree | 555ea31bfe5143f0a5e3cd54fb3035a4d1dd0ff2 /tests/sh.testcases | |
parent | 31f9747a23cc22f35c5efb0841258d7c53e3d6a0 (diff) | |
download | busybox-431a18497d2564529771cf40f5fbc5d86cc50516.tar.gz |
disambiguate a test
Diffstat (limited to 'tests/sh.testcases')
-rw-r--r-- | tests/sh.testcases | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/sh.testcases b/tests/sh.testcases index e2a75873e..aa834d4a2 100644 --- a/tests/sh.testcases +++ b/tests/sh.testcases @@ -69,12 +69,12 @@ rm -f fish TMP=fish && >$TMP ls fish -# ash, lash, and hush do not create fish; bash and ksh do. +# ash, lash, and hush do not create wish; bash and ksh do. # Thanks to Tapani Tarvainen <tt@mit.jyu.fi> for this stress test. unset TMP -rm -f fish -TMP=fish >$TMP -ls fish +rm -f wish +TMP=wish >$TMP +ls wish # The following example shows that hush's parser is # not _really_ Bourne compatible @@ -86,4 +86,4 @@ PATH=$PATH:. echo $a # assuming the shell wasn't too buggy, clean up the mess -rm -f a=b fish foo +rm -f a=b wish fish foo |