Add OSCAR version number to PRS1 unit test logs.

This commit is contained in:
sawinglogz 2019-05-18 19:46:24 -04:00
parent 2bfae3531f
commit f8e4ff754b
2 changed files with 8 additions and 2 deletions

View File

@ -181,8 +181,12 @@ QString getBranchVersion()
if (GIT_BRANCH != "master") {
version += GIT_BRANCH+"-";
}
version += GIT_REVISION +" ";
version += getGraphicsEngine()+"]";
version += GIT_REVISION;
#ifndef UNITTEST_MODE
// There is no graphics engine on the console.
version += QString(" ") + getGraphicsEngine();
#endif
version += "]";
return version;
}

View File

@ -18,6 +18,8 @@ static QString prs1OutputPath(const QString & inpath, const QString & serial, in
void PRS1Tests::initTestCase(void)
{
initializeStrings();
qDebug() << STR_TR_OSCAR + " " + getBranchVersion();
QString profile_path = TESTDATA_PATH "profile/";
Profiles::Create("test", &profile_path);