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

View File

@ -1,38 +1,38 @@
# #
# spider.mtl # spider.mtl
# #
newmtl Skin newmtl Skin
Ka 0.200000 0.200000 0.200000 Ka 0.200000 0.200000 0.200000
Kd 0.827451 0.792157 0.772549 Kd 0.827451 0.792157 0.772549
Ks 0.000000 0.000000 0.000000 Ks 0.000000 0.000000 0.000000
Ns 0.000000 Ns 0.000000
map_Kd .\wal67ar_small.jpg map_Kd .\wal67ar_small.jpg
newmtl Brusttex newmtl Brusttex
Ka 0.200000 0.200000 0.200000 Ka 0.200000 0.200000 0.200000
Kd 0.800000 0.800000 0.800000 Kd 0.800000 0.800000 0.800000
Ks 0.000000 0.000000 0.000000 Ks 0.000000 0.000000 0.000000
Ns 0.000000 Ns 0.000000
map_Kd .\wal69ar_small.jpg map_Kd .\wal69ar_small.jpg
newmtl HLeibTex newmtl HLeibTex
Ka 0.200000 0.200000 0.200000 Ka 0.200000 0.200000 0.200000
Kd 0.690196 0.639216 0.615686 Kd 0.690196 0.639216 0.615686
Ks 0.000000 0.000000 0.000000 Ks 0.000000 0.000000 0.000000
Ns 0.000000 Ns 0.000000
map_Kd .\SpiderTex.jpg map_Kd .\SpiderTex.jpg
newmtl BeinTex newmtl BeinTex
Ka 0.200000 0.200000 0.200000 Ka 0.200000 0.200000 0.200000
Kd 0.800000 0.800000 0.800000 Kd 0.800000 0.800000 0.800000
Ks 0.000000 0.000000 0.000000 Ks 0.000000 0.000000 0.000000
Ns 0.000000 Ns 0.000000
map_Kd .\drkwood2.jpg map_Kd .\drkwood2.jpg
newmtl Augentex newmtl Augentex
Ka 0.200000 0.200000 0.200000 Ka 0.200000 0.200000 0.200000
Kd 0.800000 0.800000 0.800000 Kd 0.800000 0.800000 0.800000
Ks 0.000000 0.000000 0.000000 Ks 0.000000 0.000000 0.000000
Ns 0.000000 Ns 0.000000
map_Kd .\engineflare1.jpg map_Kd .\engineflare1.jpg

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;
} }