diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2009-03-21 19:58:58 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2009-03-21 19:58:58 +0000 |
commit | ccff0b962ca85acce8502256cf7e78bb1ca2d898 (patch) | |
tree | f9b517698fc05e58ea8d72e45afa50867bc34ccf | |
parent | 3a014b85dc57a88b5e1eb006a2fa3062f4bebc8f (diff) | |
download | busybox-w32-ccff0b962ca85acce8502256cf7e78bb1ca2d898.tar.gz busybox-w32-ccff0b962ca85acce8502256cf7e78bb1ca2d898.tar.bz2 busybox-w32-ccff0b962ca85acce8502256cf7e78bb1ca2d898.zip |
msh testsuite: fix false positive, tweak run stript
-rw-r--r-- | shell/msh_test/msh-execution/exitcode_EACCES.right | 2 | ||||
-rwxr-xr-x | shell/msh_test/run-all | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/shell/msh_test/msh-execution/exitcode_EACCES.right b/shell/msh_test/msh-execution/exitcode_EACCES.right index b13682cde..6e5480b9d 100644 --- a/shell/msh_test/msh-execution/exitcode_EACCES.right +++ b/shell/msh_test/msh-execution/exitcode_EACCES.right | |||
@@ -1,2 +1,2 @@ | |||
1 | ./: cannot execute | 1 | ./: can't execute |
2 | 126 | 2 | 126 |
diff --git a/shell/msh_test/run-all b/shell/msh_test/run-all index 43bc9fc0b..29f62a5e2 100755 --- a/shell/msh_test/run-all +++ b/shell/msh_test/run-all | |||
@@ -1,8 +1,8 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | 2 | ||
3 | test -x msh || { | 3 | test -x msh || { |
4 | echo "No ./msh?! Perhaps you want to run 'ln -s ../../busybox msh'" | 4 | echo "No ./msh - creating a link to ../../busybox" |
5 | exit | 5 | ln -s ../../busybox msh |
6 | } | 6 | } |
7 | 7 | ||
8 | PATH="$PWD:$PATH" # for msh | 8 | PATH="$PWD:$PATH" # for msh |