Fix for TravisCI

pull/1931/head
Korbinian Würl 2018-05-01 11:23:38 +02:00
parent 4b7b692e5e
commit 2247513064
1 changed files with 4 additions and 0 deletions

View File

@ -272,6 +272,8 @@ TEST_F( utObjImportExport, issue1923_vertex_color_Test ) {
const aiScene *scene = importer.ReadFile( ASSIMP_TEST_MODELS_DIR "/OBJ/cube_with_vertexcolors_uni.obj", aiProcess_ValidateDataStructure ); const aiScene *scene = importer.ReadFile( ASSIMP_TEST_MODELS_DIR "/OBJ/cube_with_vertexcolors_uni.obj", aiProcess_ValidateDataStructure );
EXPECT_NE( nullptr, scene ); EXPECT_NE( nullptr, scene );
scene = importer.GetOrphanedScene();
#ifndef ASSIMP_BUILD_NO_EXPORT #ifndef ASSIMP_BUILD_NO_EXPORT
::Assimp::Exporter exporter; ::Assimp::Exporter exporter;
const aiExportDataBlob* blob = exporter.ExportToBlob( scene, "obj"); const aiExportDataBlob* blob = exporter.ExportToBlob( scene, "obj");
@ -283,6 +285,8 @@ TEST_F( utObjImportExport, issue1923_vertex_color_Test ) {
SceneDiffer differ; SceneDiffer differ;
EXPECT_TRUE( differ.isEqual( scene, sceneReImport ) ); EXPECT_TRUE( differ.isEqual( scene, sceneReImport ) );
#endif // ASSIMP_BUILD_NO_EXPORT #endif // ASSIMP_BUILD_NO_EXPORT
delete scene;
} }
TEST_F( utObjImportExport, issue1453_segfault ) { TEST_F( utObjImportExport, issue1453_segfault ) {