mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Allow using zero in patterns passed to isoltest --test
This commit is contained in:
parent
7a5957512c
commit
89e696ca1b
@ -77,7 +77,7 @@ bool IsolTestOptions::parse(int _argc, char const* const* _argv)
|
||||
|
||||
void IsolTestOptions::validate() const
|
||||
{
|
||||
static std::string filterString{"[a-zA-Z1-9_/*]*"};
|
||||
static std::string filterString{"[a-zA-Z0-9_/*]*"};
|
||||
static std::regex filterExpression{filterString};
|
||||
assertThrow(
|
||||
regex_match(testFilter, filterExpression),
|
||||
|
Loading…
Reference in New Issue
Block a user