[ROSAUTOTEST] Add option to list all testable modules

This commit is contained in:
Mark Jansen
2020-06-23 23:45:42 +02:00
parent 6859348aea
commit ff6b138117
4 changed files with 19 additions and 1 deletions

View File

@@ -21,7 +21,8 @@ CConfiguration::CConfiguration()
m_PrintToConsole(true),
m_RepeatCount(1),
m_Shutdown(false),
m_Submit(false)
m_Submit(false),
m_ListModules(false)
{
WCHAR WindowsDirectory[MAX_PATH];
WCHAR Interactive[32];
@@ -100,6 +101,10 @@ CConfiguration::ParseParameters(int argc, wchar_t* argv[])
m_RepeatCount = tmp_RepeatCount;
break;
case 'l':
m_ListModules = true;
break;
default:
throw CInvalidParameterException();
}