| 548 | } |
| 549 | |
| 550 | bool MatchFilters(const TStringBuf& name) const { |
| 551 | if (!Filters) { |
| 552 | return true; |
| 553 | } |
| 554 | |
| 555 | for (auto&& re : Filters) { |
| 556 | if (RE2::FullMatchN({name.data(), name.size()}, *re, nullptr, 0)) { |
| 557 | return true; |
| 558 | } |
| 559 | } |
| 560 | |
| 561 | return false; |
| 562 | } |
| 563 | |
| 564 | bool ListTests = false; |
| 565 | double TimeBudget = -1.0; |