[ROSAUTOTEST] Allow rosautotest to reside in the same directory as its files and show its duration at its end.

This commit is contained in:
Doug Lyons 2025-03-26 03:26:17 -05:00
parent 9563c07146
commit a45c5c8826
3 changed files with 66 additions and 5 deletions

View file

@ -64,11 +64,27 @@ CWineTest::GetNextFile()
WIN32_FIND_DATAW fd;
/* Did we already begin searching for files? */
if(m_hFind)
if (m_hFind)
{
/* Then get the next file (if any) */
if(FindNextFileW(m_hFind, &fd))
FoundFile = true;
if (FindNextFileW(m_hFind, &fd))
{
// printf("cFileName is '%S'.\n", fd.cFileName);
/* if it was NOT rosautotest.exe then proceed as normal */
if (wcsicmp(fd.cFileName, TestName) != 0)
{
FoundFile = true;
}
else
{
/* It was rosautotest.exe so get the next file (if any) */
if (FindNextFileW(m_hFind, &fd))
{
FoundFile = true;
}
// printf("cFileName is '%S'.\n", fd.cFileName);
}
}
}
else
{
@ -91,8 +107,25 @@ CWineTest::GetNextFile()
/* Search for the first file and check whether we got one */
m_hFind = FindFirstFileW(FindPath.c_str(), &fd);
if(m_hFind != INVALID_HANDLE_VALUE)
FoundFile = true;
/* If we returned a good handle */
if (m_hFind != INVALID_HANDLE_VALUE)
{
// printf("cFileName is '%S'.\n", fd.cFileName);
/* if it was NOT rosautotest.exe then proceed as normal */
if (wcsicmp(fd.cFileName, TestName) != 0)
{
FoundFile = true;
}
else
{
/* It was rosautotest.exe so get the next file (if any) */
if (FindNextFileW(m_hFind, &fd))
{
FoundFile = true;
}
// printf("cFileName is '%S'.\n", fd.cFileName);
}
}
}
if(FoundFile)

View file

@ -9,6 +9,8 @@
#include <cstdio>
#include <ndk/setypes.h>
#include <ndk/exfuncs.h>
#include <strsafe.h>
WCHAR TestName[MAX_PATH];
CConfiguration Configuration;
@ -87,6 +89,12 @@ extern "C" int
wmain(int argc, wchar_t* argv[])
{
int ReturnValue = 1;
DWORD TestStartTime, TestEndTime;
GetModuleFileNameW(NULL, TestName, _countof(TestName));
WCHAR* Name = wcsrchr(TestName, '\\');
Name++;
StringCchCopyW(TestName, _countof(TestName), Name);
SetNtGlobalFlags();
@ -99,6 +107,7 @@ wmain(int argc, wchar_t* argv[])
Configuration.GetSystemInformation();
Configuration.GetConfigurationFromFile();
TestStartTime = GetTickCount();
ss << endl
<< endl
<< "[ROSAUTOTEST] System uptime " << setprecision(2) << fixed;
@ -139,6 +148,23 @@ wmain(int argc, wchar_t* argv[])
WineTest.Run();
}
/* Clear the stringstream */
ss.str("");
ss.clear();
/* Show the beginning time again */
ss << "[ROSAUTOTEST] System uptime at start was " << setprecision(2) << fixed;
ss << ((float)TestStartTime / 1000) << " seconds" << endl;
/* Show the time now so that we can see how long the tests took */
TestEndTime = GetTickCount();
ss << endl
<< "[ROSAUTOTEST] System uptime at end was " << setprecision(2) << fixed;
ss << ((float)TestEndTime / 1000) << " seconds" << endl;
ss << "[ROSAUTOTEST] Duration was " << (((float)TestEndTime / 1000) - ((float)TestStartTime / 1000)) / 60;
ss << " minutes" << endl;
StringOut(ss.str());
/* For sysreg2 */
DbgPrint("SYSREG_CHECKPOINT:THIRDBOOT_COMPLETE\n");

View file

@ -80,4 +80,6 @@ string StringOut(const string& String, bool forcePrint = true);
string UnicodeToAscii(PCWSTR UnicodeString);
string UnicodeToAscii(const wstring& UnicodeString);
extern WCHAR TestName[MAX_PATH];
#endif /* _ROSAUTOTEST_H_ */