[git commit] hush_test: add subshelled case tests

Mike Frysinger vapier at gentoo.org
Thu May 21 22:09:24 UTC 2009


commit: http://git.busybox.net/busybox/commit/?id=7b424fe738e554e41e3c581e8e13808e317e53f0
branch: http://git.busybox.net/busybox/commit/?id=refs/heads/master


Signed-off-by: Mike Frysinger <vapier at gentoo.org>
---
 shell/hush_test/hush-misc/case1.tests |   12 ++++++++++++
 1 files changed, 12 insertions(+), 0 deletions(-)

diff --git a/shell/hush_test/hush-misc/case1.tests b/shell/hush_test/hush-misc/case1.tests
index 0174893..b2c96cc 100755
--- a/shell/hush_test/hush-misc/case1.tests
+++ b/shell/hush_test/hush-misc/case1.tests
@@ -23,3 +23,15 @@ case `echo w w` in a) echo SKIP;; w) echo WRONG;; w*) echo OK_44;; esac;
 
 case w in `echo w`) echo OK_51;; `echo WRONG >&2`w) echo WRONG;; esac;
 case w in `echo OK_52 >&2`) echo SKIP;; `echo`w) echo OK_53;; esac;
+
+# parsing cases in subshells can easily get messy
+ case m in  m) echo ok-sub1;; esac
+ case m in (m) echo ok-sub2;; esac
+(case m in  m) echo ok-sub3;; esac)
+(case m in (m) echo ok-sub4;; esac)
+(
+ case m in  m) echo ok-sub5;; esac
+)
+(
+ case m in (m) echo ok-sub6;; esac
+)
-- 
1.6.0.6


More information about the busybox-cvs mailing list