소스 검색

Regression Testsuite: update database.

Kim Kulling 9 년 전
부모
커밋
0ec1e91722
5개의 변경된 파일4개의 추가작업 그리고 3개의 파일을 삭제
  1. 1 1
      code/BlenderDNA.h
  2. 1 1
      code/BlenderScene.cpp
  3. 1 1
      code/BlenderSceneGen.h
  4. BIN
      test/regression/db.zip
  5. 1 0
      test/regression/run.py

+ 1 - 1
code/BlenderDNA.h

@@ -209,7 +209,7 @@ class Structure
 public:
 
     Structure()
-        :   cache_idx(-1)
+        :   cache_idx(static_cast<size_t>(-1) )
     {}
 
 public:

+ 1 - 1
code/BlenderScene.cpp

@@ -2,7 +2,7 @@
 Open Asset Import Library (ASSIMP)
 ----------------------------------------------------------------------
 
-Copyright (c) 2006-2010, ASSIMP Development Team
+Copyright (c) 2006-2016, ASSIMP Development Team
 All rights reserved.
 
 Redistribution and use of this software in source and binary forms,

+ 1 - 1
code/BlenderSceneGen.h

@@ -2,7 +2,7 @@
 Open Asset Import Library (ASSIMP)
 ----------------------------------------------------------------------
 
-Copyright (c) 2006-2010, ASSIMP Development Team
+Copyright (c) 2006-2016, ASSIMP Development Team
 All rights reserved.
 
 Redistribution and use of this software in source and binary forms,

BIN
test/regression/db.zip


+ 1 - 0
test/regression/run.py

@@ -185,6 +185,7 @@ def process_dir(d, outfile_results, zipin, result ):
     shellparams = {'stdout':outfile_results, 'stderr':outfile_results, 'shell':False}
 
     print("Processing directory " + d)
+    all = ""
     for f in sorted(os.listdir(d)):
         fullpath = os.path.join(d, f)
         if os.path.isdir(fullpath) and not f[:1] == '.':