mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Merge pull request #13167 from ywon0925/ICE-isoltest
Fix validation error causing ICE with isoltest --test
This commit is contained in:
commit
a2a88afd98
@ -1,5 +1,5 @@
|
|||||||
set(sources
|
set(sources
|
||||||
boostTest.cpp
|
soltest.cpp
|
||||||
Common.cpp
|
Common.cpp
|
||||||
Common.h
|
Common.h
|
||||||
CommonSyntaxTest.cpp
|
CommonSyntaxTest.cpp
|
||||||
|
@ -509,6 +509,11 @@ int main(int argc, char const *argv[])
|
|||||||
cerr << exception.what() << endl;
|
cerr << exception.what() << endl;
|
||||||
return EXIT_FAILURE;
|
return EXIT_FAILURE;
|
||||||
}
|
}
|
||||||
|
catch (solidity::test::ConfigException const& exception)
|
||||||
|
{
|
||||||
|
cerr << exception.what() << endl;
|
||||||
|
return EXIT_FAILURE;
|
||||||
|
}
|
||||||
catch (...)
|
catch (...)
|
||||||
{
|
{
|
||||||
cerr << "Unhandled exception caught." << endl;
|
cerr << "Unhandled exception caught." << endl;
|
||||||
|
Loading…
Reference in New Issue
Block a user