Don't return an error from --help

This commit is contained in:
Kamil Śliwak
2021-10-14 13:45:32 +02:00
parent ca3b65437f
commit 531ea36662
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -607,7 +607,7 @@ bool CommandLineInterface::processInput()
{
case InputMode::Help:
CommandLineParser::printHelp(sout());
return false;
break;
case InputMode::License:
printLicense();
break;
+1 -1
View File
@@ -116,7 +116,7 @@ BOOST_AUTO_TEST_CASE(help)
{
OptionsReaderAndMessages result = parseCommandLineAndReadInputFiles({"solc", "--help"}, "", /* _processInput */ true);
BOOST_TEST(!result.success);
BOOST_TEST(result.success);
BOOST_TEST(boost::starts_with(result.stdoutContent, "solc, the Solidity commandline compiler."));
BOOST_TEST(result.stderrContent == "");
BOOST_TEST(result.options.input.mode == InputMode::Help);