mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-28 19:26:16 +00:00
[rosautotest]: Find the last underscore instead of the first one when building a module name, hurray for twain_32_winetest and ws2_32_winetest
See issue #4929 for more details. svn path=/trunk/; revision=44282
This commit is contained in:
@@ -227,7 +227,7 @@ CWineTest::GetNextTestInfo()
|
||||
TestInfo->CommandLine += AsciiToUnicode(m_CurrentTest);
|
||||
|
||||
/* Store the Module name */
|
||||
UnderscorePosition = m_CurrentFile.find('_');
|
||||
UnderscorePosition = m_CurrentFile.find_last_of('_');
|
||||
|
||||
if(UnderscorePosition == m_CurrentFile.npos)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user