closes github.com/assimp/assimp/issues/1228: use test extension for exported test files.

pull/1234/head
Kim Kulling 2017-04-17 14:26:54 +02:00
parent babb783336
commit ad80f97930
3 changed files with 3431 additions and 3221 deletions

File diff suppressed because it is too large Load Diff

View File

@ -202,7 +202,7 @@ protected:
::Assimp::Exporter exporter; ::Assimp::Exporter exporter;
const aiScene *scene = importer.ReadFile( ASSIMP_TEST_MODELS_DIR "/OBJ/spider.obj", 0 ); const aiScene *scene = importer.ReadFile( ASSIMP_TEST_MODELS_DIR "/OBJ/spider.obj", 0 );
EXPECT_NE( nullptr, scene ); EXPECT_NE( nullptr, scene );
EXPECT_EQ( aiReturn_SUCCESS, exporter.Export( scene, "obj", ASSIMP_TEST_MODELS_DIR "/OBJ/spider.obj" ) ); EXPECT_EQ( aiReturn_SUCCESS, exporter.Export( scene, "obj", ASSIMP_TEST_MODELS_DIR "/OBJ/spider_test.obj" ) );
return true; return true;
} }