mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 01:25:56 +00:00
[ROSAUTOTEST] Add option to list all testable modules
This commit is contained in:
parent
6859348aea
commit
ff6b138117
4 changed files with 19 additions and 1 deletions
|
@ -213,6 +213,16 @@ CWineTest::GetNextTestInfo()
|
|||
{
|
||||
while(!m_CurrentFile.empty() || GetNextFile())
|
||||
{
|
||||
/* The user asked for a list of all modules */
|
||||
if (Configuration.ListModulesOnly())
|
||||
{
|
||||
std::stringstream ss;
|
||||
ss << "Module: " << UnicodeToAscii(m_CurrentFile) << endl;
|
||||
m_CurrentFile.clear();
|
||||
StringOut(ss.str());
|
||||
continue;
|
||||
}
|
||||
|
||||
try
|
||||
{
|
||||
while(GetNextTest())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue