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
3 changed files with 6 additions and 1 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
set(sources
boostTest.cpp
soltest.cpp
Common.cpp
Common.h
CommonSyntaxTest.cpp
+5
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;