mirror of
https://github.com/AleziaKurdis/overte.git
synced 2025-04-05 22:13:54 +02:00
Fix warnings generated when building tests
This commit is contained in:
parent
ecb3913c1a
commit
9a80e696ed
5 changed files with 10 additions and 12 deletions
|
@ -307,7 +307,7 @@ inline QString getTestResource(const QString& relativePath) {
|
|||
QFileInfo fileInfo(__FILE__);
|
||||
auto parentDir = fileInfo.absoluteDir();
|
||||
auto rootDir = parentDir.absoluteFilePath("..");
|
||||
dir = QDir::cleanPath(rootDir);
|
||||
dir.setPath(QDir::cleanPath(rootDir));
|
||||
});
|
||||
|
||||
return QDir::cleanPath(dir.absoluteFilePath(relativePath));
|
||||
|
|
|
@ -300,19 +300,17 @@ void AnimTests::testAccumulateTime() {
|
|||
QString id = "testNode";
|
||||
AnimVariantMap triggers;
|
||||
float loopFlag = true;
|
||||
float resultFrame = accumulateTime(startFrame, endFrame, timeScale, startFrame, dt, loopFlag, id, triggers);
|
||||
accumulateTime(startFrame, endFrame, timeScale, startFrame, dt, loopFlag, id, triggers);
|
||||
// a one frame looping animation should NOT trigger onLoop events
|
||||
QVERIFY(!triggers.hasKey("testNodeOnLoop"));
|
||||
|
||||
const uint32_t MAX_TRIGGER_COUNT = 3;
|
||||
|
||||
startFrame = 0.0f;
|
||||
endFrame = 1.1f;
|
||||
timeScale = 10.0f;
|
||||
dt = 10.0f;
|
||||
triggers.clearMap();
|
||||
loopFlag = true;
|
||||
resultFrame = accumulateTime(startFrame, endFrame, timeScale, startFrame, dt, loopFlag, id, triggers);
|
||||
accumulateTime(startFrame, endFrame, timeScale, startFrame, dt, loopFlag, id, triggers);
|
||||
// a short animation with a large dt & a large timescale, should generate a onLoop event.
|
||||
QVERIFY(triggers.hasKey("testNodeOnLoop"));
|
||||
}
|
||||
|
|
|
@ -46,7 +46,7 @@ void RotationConstraintTests::testElbowConstraint() {
|
|||
{ // test reference rotation -- should be unconstrained
|
||||
glm::quat inputRotation = referenceRotation;
|
||||
glm::quat outputRotation = inputRotation;
|
||||
bool updated = elbow.apply(outputRotation);
|
||||
elbow.apply(outputRotation);
|
||||
glm::quat expectedRotation = referenceRotation;
|
||||
QCOMPARE_WITH_ABS_ERROR(expectedRotation, outputRotation, EPSILON);
|
||||
}
|
||||
|
@ -60,7 +60,7 @@ void RotationConstraintTests::testElbowConstraint() {
|
|||
for (float angle = startAngle; angle < endAngle + 0.5f * deltaAngle; angle += deltaAngle) {
|
||||
glm::quat inputRotation = glm::angleAxis(angle, hingeAxis) * referenceRotation;
|
||||
glm::quat outputRotation = inputRotation;
|
||||
bool updated = elbow.apply(outputRotation);
|
||||
elbow.apply(outputRotation);
|
||||
QCOMPARE_WITH_ABS_ERROR(inputRotation, outputRotation, EPSILON);
|
||||
}
|
||||
}
|
||||
|
@ -69,7 +69,7 @@ void RotationConstraintTests::testElbowConstraint() {
|
|||
float angle = minAngle - smallAngle;
|
||||
glm::quat inputRotation = glm::angleAxis(angle, hingeAxis) * referenceRotation;
|
||||
glm::quat outputRotation = inputRotation;
|
||||
bool updated = elbow.apply(outputRotation);
|
||||
elbow.apply(outputRotation);
|
||||
glm::quat expectedRotation = glm::angleAxis(minAngle, hingeAxis) * referenceRotation;
|
||||
QCOMPARE_WITH_ABS_ERROR(expectedRotation, outputRotation, EPSILON);
|
||||
}
|
||||
|
@ -78,7 +78,7 @@ void RotationConstraintTests::testElbowConstraint() {
|
|||
float angle = maxAngle + smallAngle;
|
||||
glm::quat inputRotation = glm::angleAxis(angle, hingeAxis) * referenceRotation;
|
||||
glm::quat outputRotation = inputRotation;
|
||||
bool updated = elbow.apply(outputRotation);
|
||||
elbow.apply(outputRotation);
|
||||
glm::quat expectedRotation = glm::angleAxis(maxAngle, hingeAxis) * referenceRotation;
|
||||
QCOMPARE_WITH_ABS_ERROR(expectedRotation, outputRotation, EPSILON);
|
||||
}
|
||||
|
@ -89,7 +89,7 @@ void RotationConstraintTests::testElbowConstraint() {
|
|||
float someAngle = 0.789f;
|
||||
glm::quat inputRotation = glm::angleAxis(someAngle, twistVector) * referenceRotation;
|
||||
glm::quat outputRotation = inputRotation;
|
||||
bool updated = elbow.apply(outputRotation);
|
||||
elbow.apply(outputRotation);
|
||||
glm::quat expectedRotation = referenceRotation;
|
||||
QCOMPARE_WITH_ABS_ERROR(expectedRotation, outputRotation, EPSILON);
|
||||
}
|
||||
|
|
|
@ -83,7 +83,7 @@ void JSBakerTest::setTestCases() {
|
|||
|
||||
void JSBakerTest::testJSBaking() {
|
||||
|
||||
for (int i = 0;i < _testCases.size();i++) {
|
||||
for (decltype(_testCases)::size_type i = 0;i < _testCases.size();i++) {
|
||||
QByteArray output;
|
||||
auto input = _testCases.at(i).first;
|
||||
JSBaker::bakeJS(input, output);
|
||||
|
|
|
@ -239,7 +239,7 @@ void GLMHelpersTests::roundPerf() {
|
|||
auto manualTime = std::chrono::high_resolution_clock::now() - start;
|
||||
|
||||
bool identical = true;
|
||||
for (int i = 0; i < vecs.size(); i++) {
|
||||
for (decltype(vecs)::size_type i = 0; i < vecs.size(); i++) {
|
||||
identical &= vecs[i] == vecs2[i];
|
||||
if (vecs[i] != vecs2[i]) {
|
||||
qDebug() << "glm: " << vecs[i].x << vecs[i].y << vecs[i].z << ", manual: " << vecs2[i].x << vecs2[i].y << vecs2[i].z;
|
||||
|
|
Loading…
Reference in a new issue