From af54bf4c423a591b90be1af32b55036f6c9dd939 Mon Sep 17 00:00:00 2001 From: wise86Android Date: Sat, 16 May 2015 12:28:49 +0200 Subject: [PATCH] test fail, fix file path --- test/unit/utImporter.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/test/unit/utImporter.cpp b/test/unit/utImporter.cpp index c7094229a..164c51bff 100644 --- a/test/unit/utImporter.cpp +++ b/test/unit/utImporter.cpp @@ -1,7 +1,7 @@ #include "UnitTestPCH.h" - + #include "../../include/assimp/postprocess.h" -#include "../../include/assimp/scene.h" +#include "../../include/assimp/scene.h" #include #include @@ -219,13 +219,13 @@ TEST_F(ImporterTest, testMultipleReads) aiProcess_OptimizeMeshes | aiProcess_OptimizeGraph; - EXPECT_TRUE(pImp->ReadFile("../../test/models/X/test.x",flags)); + EXPECT_TRUE(pImp->ReadFile("../test/models/X/test.x",flags)); //EXPECT_TRUE(pImp->ReadFile("../../test/models/X/dwarf.x",flags)); # is in nonbsd - EXPECT_TRUE(pImp->ReadFile("../../test/models/X/Testwuson.X",flags)); - EXPECT_TRUE(pImp->ReadFile("../../test/models/X/anim_test.x",flags)); + EXPECT_TRUE(pImp->ReadFile("../test/models/X/Testwuson.X",flags)); + EXPECT_TRUE(pImp->ReadFile("../test/models/X/anim_test.x",flags)); //EXPECT_TRUE(pImp->ReadFile("../../test/models/X/dwarf.x",flags)); # is in nonbsd - EXPECT_TRUE(pImp->ReadFile("../../test/models/X/anim_test.x",flags)); - EXPECT_TRUE(pImp->ReadFile("../../test/models/X/BCN_Epileptic.X",flags)); + EXPECT_TRUE(pImp->ReadFile("../test/models/X/anim_test.x",flags)); + EXPECT_TRUE(pImp->ReadFile("../test/models/X/BCN_Epileptic.X",flags)); //EXPECT_TRUE(pImp->ReadFile("../../test/models/X/dwarf.x",flags)); # is in nonbsd }