source: MondoRescue/branches/2.2.9/mindi-busybox/shell/hush_test/hush-misc/case1.tests@ 3320

Last change on this file since 3320 was 3320, checked in by Bruno Cornec, 9 years ago
  • Re-add (thanks git BTW) the 2.2.9 branch which had been destroyed in the move to 3.0
  • Property svn:executable set to *
File size: 1.2 KB
Line 
1case w in a) echo SKIP;; w) echo OK_1;; w) echo WRONG;; esac
2
3case w in
4 a) echo SKIP;;
5 w)echo OK_1 ;;
6 w)
7 echo WRONG
8 ;;
9esac
10
11t=w
12case $t in a) echo SKIP;; w) echo OK_21;; w) echo WRONG;; esac;
13case "$t" in a) echo SKIP;; w) echo OK_22;; w) echo WRONG;; esac;
14case w in a) echo SKIP;; $t) echo OK_23;; "$t") echo WRONG;; esac;
15
16case '' in a) echo SKIP;; w) echo WRONG;; *) echo OK_31;; esac;
17case '' in a) echo SKIP;; '') echo OK_32;; *) echo WRONG;; esac;
18
19case `echo w` in a) echo SKIP;; w) echo OK_41;; w) echo WRONG;; esac;
20case "`echo w`" in a) echo SKIP;; w) echo OK_42;; w) echo WRONG;; esac;
21case `echo w w` in a) echo SKIP;; w) echo WRONG;; 'w w') echo OK_43;; esac;
22case `echo w w` in a) echo SKIP;; w) echo WRONG;; w*) echo OK_44;; esac;
23
24case w in `echo w`) echo OK_51;; `echo WRONG >&2`w) echo WRONG;; esac;
25case w in `echo OK_52 >&2`) echo SKIP;; `echo`w) echo OK_53;; esac;
26
27# parsing cases in subshells can easily get messy
28 case m in m) echo OK_sub1;; esac
29 case m in (m) echo OK_sub2;; esac
30(case m in m) echo OK_sub3;; esac)
31(case m in (m) echo OK_sub4;; esac)
32(
33 case m in m) echo OK_sub5;; esac
34)
35(
36 case m in (m) echo OK_sub6;; esac
37)
38(case esac in "esac") echo OK_esac1;; esac)
39
40echo Done
Note: See TracBrowser for help on using the repository browser.