hush_test: add subshelled case tests
authorMike Frysinger <vapier@gentoo.org>
Thu, 21 May 2009 22:09:24 +0000 (18:09 -0400)
committerMike Frysinger <vapier@gentoo.org>
Thu, 21 May 2009 22:09:24 +0000 (18:09 -0400)
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
shell/hush_test/hush-misc/case1.tests

index 0174893..b2c96cc 100755 (executable)
@@ -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
+)