Skip to content

Commit a2a88af

Browse files
authored
Merge pull request #13167 from ywon0925/ICE-isoltest
Fix validation error causing ICE with isoltest --test
2 parents 02fdcb3 + 0ee38c5 commit a2a88af

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

test/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
set(sources
2-
boostTest.cpp
2+
soltest.cpp
33
Common.cpp
44
Common.h
55
CommonSyntaxTest.cpp
File renamed without changes.

test/tools/isoltest.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -509,6 +509,11 @@ int main(int argc, char const *argv[])
509509
cerr << exception.what() << endl;
510510
return EXIT_FAILURE;
511511
}
512+
catch (solidity::test::ConfigException const& exception)
513+
{
514+
cerr << exception.what() << endl;
515+
return EXIT_FAILURE;
516+
}
512517
catch (...)
513518
{
514519
cerr << "Unhandled exception caught." << endl;

0 commit comments

Comments
 (0)