mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 12:23:14 +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:
parent
e016a230af
commit
70dc807bf2
1 changed files with 1 additions and 1 deletions
|
@ -227,7 +227,7 @@ CWineTest::GetNextTestInfo()
|
||||||
TestInfo->CommandLine += AsciiToUnicode(m_CurrentTest);
|
TestInfo->CommandLine += AsciiToUnicode(m_CurrentTest);
|
||||||
|
|
||||||
/* Store the Module name */
|
/* Store the Module name */
|
||||||
UnderscorePosition = m_CurrentFile.find('_');
|
UnderscorePosition = m_CurrentFile.find_last_of('_');
|
||||||
|
|
||||||
if(UnderscorePosition == m_CurrentFile.npos)
|
if(UnderscorePosition == m_CurrentFile.npos)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue