diff options
Diffstat (limited to 'benches')
| -rw-r--r-- | benches/regex.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/benches/regex.rs b/benches/regex.rs index dd8f54a..f31d168 100644 --- a/benches/regex.rs +++ b/benches/regex.rs @@ -22,8 +22,11 @@ pub fn regex_throughput(c: &mut Criterion) { }; re(".*"); + re("(.*)"); + re("abc.............+"); re(".*(GNU)?.plus.(Linux)?.*"); - re(".*GNU.plus.Linux.*"); + re(".*GNU.*plus.*Linux.*"); + re(".*(0|1(01*0)*1)(0|1(01*0)*1)(0|1(01*0)*1)+.*"); group.finish(); } |
