[git commit] hush: add func6.tests

Denys Vlasenko vda.linux at googlemail.com
Sat Oct 1 18:12:10 UTC 2016


commit: https://git.busybox.net/busybox/commit/?id=a2633aa8197a866a7c00406f7eb7e9c9b4554166
branch: https://git.busybox.net/busybox/commit/?id=refs/heads/master

Signed-off-by: Denys Vlasenko <vda.linux at googlemail.com>
---
 shell/hush_test/hush-misc/func6.right |  2 ++
 shell/hush_test/hush-misc/func6.tests | 11 +++++++++++
 2 files changed, 13 insertions(+)

diff --git a/shell/hush_test/hush-misc/func6.right b/shell/hush_test/hush-misc/func6.right
new file mode 100644
index 0000000..0ebd8e5
--- /dev/null
+++ b/shell/hush_test/hush-misc/func6.right
@@ -0,0 +1,2 @@
+Two:2
+Two:2
diff --git a/shell/hush_test/hush-misc/func6.tests b/shell/hush_test/hush-misc/func6.tests
new file mode 100755
index 0000000..029c3e8
--- /dev/null
+++ b/shell/hush_test/hush-misc/func6.tests
@@ -0,0 +1,11 @@
+f1() {
+	while return 2; do :; done
+}
+f1
+echo Two:$?
+
+f2() {
+	while :; do return 2; done
+}
+f2
+echo Two:$?


More information about the busybox-cvs mailing list