Merge pull request #13167 from ywon0925/ICE-isoltest

Fix validation error causing ICE with isoltest --test
This commit is contained in:
Mathias L. Baumann 2022-06-22 17:29:34 +02:00 committed by GitHub
commit a2a88afd98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 1 deletions

View File

@ -1,5 +1,5 @@
set(sources
boostTest.cpp
soltest.cpp
Common.cpp
Common.h
CommonSyntaxTest.cpp

View File

@ -509,6 +509,11 @@ int main(int argc, char const *argv[])
cerr << exception.what() << endl;
return EXIT_FAILURE;
}
catch (solidity::test::ConfigException const& exception)
{
cerr << exception.what() << endl;
return EXIT_FAILURE;
}
catch (...)
{
cerr << "Unhandled exception caught." << endl;