diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2015-10-29 22:37:25 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2015-10-29 22:37:25 +0100 |
commit | 112889d70670a23ecf8d493eab7e632b47435bb9 (patch) | |
tree | e6b69637212b154531eaedf2dc7702ac88e5165a /shell/hush_test | |
parent | c0e007663d30f83b0e5e074db34dcffaa8915e99 (diff) | |
download | busybox-w32-112889d70670a23ecf8d493eab7e632b47435bb9.tar.gz busybox-w32-112889d70670a23ecf8d493eab7e632b47435bb9.tar.bz2 busybox-w32-112889d70670a23ecf8d493eab7e632b47435bb9.zip |
hush: copy for.tests from ash testsuite
This test passes for hush
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/hush_test')
-rw-r--r-- | shell/hush_test/hush-misc/for.right | 1 | ||||
-rwxr-xr-x | shell/hush_test/hush-misc/for.tests | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/shell/hush_test/hush-misc/for.right b/shell/hush_test/hush-misc/for.right new file mode 100644 index 000000000..d86bac9de --- /dev/null +++ b/shell/hush_test/hush-misc/for.right | |||
@@ -0,0 +1 @@ | |||
OK | |||
diff --git a/shell/hush_test/hush-misc/for.tests b/shell/hush_test/hush-misc/for.tests new file mode 100755 index 000000000..4889a9f2d --- /dev/null +++ b/shell/hush_test/hush-misc/for.tests | |||
@@ -0,0 +1,5 @@ | |||
1 | for i | ||
2 | in OK | ||
3 | do | ||
4 | echo $i | ||
5 | done | ||