Temp disable sortHint UNIT test (until we know why it sporadically fails)

This commit is contained in:
Klaus Basan
2019-03-12 00:40:51 +01:00
committed by Mat Sutcliffe
parent 3dd13051e5
commit 804dcbf5b8

View File

@@ -292,7 +292,12 @@ namespace BlackMiscTest
}
#endif
QVERIFY2(hint <= noHint, "Expected hinted sort being faster");
//! \FIXME KB 2019-03, as discussed on Discord: temp workaround to NOT break the Jenkins build (until we know why this sometimes fails)
const bool ok = hint <= noHint;
if (ok || CBuildConfig::isLocalDeveloperDebugBuild())
{
QVERIFY2(ok, "Expected hinted sort being faster");
}
}
CAircraftSituationList CTestAircraftSituation::testSituations()