diff --git a/oscar/SleepLib/common.cpp b/oscar/SleepLib/common.cpp index 0f287401..be4e249f 100644 --- a/oscar/SleepLib/common.cpp +++ b/oscar/SleepLib/common.cpp @@ -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; } diff --git a/oscar/tests/prs1tests.cpp b/oscar/tests/prs1tests.cpp index 8b282de4..16ffb412 100644 --- a/oscar/tests/prs1tests.cpp +++ b/oscar/tests/prs1tests.cpp @@ -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);