1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
|
# This is near the limits of the RE engine
regexp [string repeat x*y*z* 480] x
} 1
test reg-33.30 {Bug 1080042} {
regexp {(\Y)+} foo
} 1
# cleanup
::tcltest::cleanupTests
return
# Local Variables:
# mode: tcl
|
>
>
>
>
|
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
|
# This is near the limits of the RE engine
regexp [string repeat x*y*z* 480] x
} 1
test reg-33.30 {Bug 1080042} {
regexp {(\Y)+} foo
} 1
test reg-33.31 {Bug 7c64aa5e1a} {
regexp -inline {(?b).\{1,10\}} {abcdef}
} abcdef
# cleanup
::tcltest::cleanupTests
return
# Local Variables:
# mode: tcl
|