Commit 426d9c82 authored by hybrid's avatar hybrid

Test case fixed with latest changes for relative texture names.

git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@3714 dfc29bdd-3216-0410-991c-e03cc46cb475
parent 6c1777a8
......@@ -58,9 +58,11 @@ static bool saveScene(void)
smgr->addCameraSceneNode();
logTestString("Test scene.irr");
smgr->saveScene("results/scene.irr");
bool result = binaryCompareFiles("results/scene.irr", "media/scene.irr");
logTestString("Test scene2.irr");
smgr->saveScene("results/scene2.irr", 0, node3);
result &= binaryCompareFiles("results/scene2.irr", "media/scene2.irr");
......@@ -68,8 +70,7 @@ static bool saveScene(void)
device->run();
device->drop();
// TODO: The relative texture names are not yet fixed, so ignore this test
return true;
return result;
}
static bool loadScene(void)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment