diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2018-01-12 17:58:20 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2018-01-12 17:58:20 +0100 |
commit | 6606c519efa9a74c53bf05e53e07a8d8f0eb37c7 (patch) | |
tree | 18a2e20a9a5e22b967d6f0d42342687b2622210b | |
parent | afb73a25ea9b046f0fb2fa83a6d75b15bd952716 (diff) | |
download | busybox-w32-6606c519efa9a74c53bf05e53e07a8d8f0eb37c7.tar.gz busybox-w32-6606c519efa9a74c53bf05e53e07a8d8f0eb37c7.tar.bz2 busybox-w32-6606c519efa9a74c53bf05e53e07a8d8f0eb37c7.zip |
hush: add command2.tests from ash tests
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | shell/hush_test/hush-misc/command2.right | 2 | ||||
-rwxr-xr-x | shell/hush_test/hush-misc/command2.tests | 6 |
2 files changed, 8 insertions, 0 deletions
diff --git a/shell/hush_test/hush-misc/command2.right b/shell/hush_test/hush-misc/command2.right new file mode 100644 index 000000000..e3214f0a9 --- /dev/null +++ b/shell/hush_test/hush-misc/command2.right | |||
@@ -0,0 +1,2 @@ | |||
1 | test1 | ||
2 | hush: can't execute './test2.sh': Permission denied | ||
diff --git a/shell/hush_test/hush-misc/command2.tests b/shell/hush_test/hush-misc/command2.tests new file mode 100755 index 000000000..9d9de9a89 --- /dev/null +++ b/shell/hush_test/hush-misc/command2.tests | |||
@@ -0,0 +1,6 @@ | |||
1 | echo "echo test1; ./test2.sh" >test1.sh | ||
2 | echo "echo test2" >test2.sh | ||
3 | |||
4 | command . ./test1.sh | ||
5 | |||
6 | rm -f test1.sh test2.sh | ||