8355 need libc regex tests
[unleashed.git] / usr / src / test / libc-tests / tests / regex / data / repet_ordinary.in
blob08bc286e5be272db17c8dbcff04aad26468a464e
1 # ordinary repetitions
2 ab*c            &       abc     abc
3 ab+c            -       abc     abc
4 ab?c            -       abc     abc
5 a\(*\)b         b       a*b     a*b
6 a\(**\)b        b       ab      ab
7 a\(***\)b       bC      BADRPT
8 *a              b       *a      *a
9 **a             b       a       a
10 ***a            bC      BADRPT