xref: /minix3/tests/lib/libc/regex/data/paren.in (revision 11be35a165022172ed3cea20f2b5df0307540b0e)
1*11be35a1SLionel Sambuc# parentheses and perversions thereof
2*11be35a1SLionel Sambuca(b)c		-	abc	abc
3*11be35a1SLionel Sambuca\(b\)c		b	abc	abc
4*11be35a1SLionel Sambuca(		C	EPAREN
5*11be35a1SLionel Sambuca(		b	a(	a(
6*11be35a1SLionel Sambuca\(		-	a(	a(
7*11be35a1SLionel Sambuca\(		bC	EPAREN
8*11be35a1SLionel Sambuca\(b		bC	EPAREN
9*11be35a1SLionel Sambuca(b		C	EPAREN
10*11be35a1SLionel Sambuca(b		b	a(b	a(b
11*11be35a1SLionel Sambuc# gag me with a right parenthesis -- 1003.2 goofed here (my fault, partly)
12*11be35a1SLionel Sambuca)		-	a)	a)
13*11be35a1SLionel Sambuc)		-	)	)
14*11be35a1SLionel Sambuc# end gagging (in a just world, those *should* give EPAREN)
15*11be35a1SLionel Sambuca)		b	a)	a)
16*11be35a1SLionel Sambuca\)		bC	EPAREN
17*11be35a1SLionel Sambuc\)		bC	EPAREN
18*11be35a1SLionel Sambuca()b		-	ab	ab
19*11be35a1SLionel Sambuca\(\)b		b	ab	ab
20