Regression Testsuite: update database.
parent
22dc22778d
commit
0ec1e91722
|
@ -209,7 +209,7 @@ class Structure
|
||||||
public:
|
public:
|
||||||
|
|
||||||
Structure()
|
Structure()
|
||||||
: cache_idx(-1)
|
: cache_idx(static_cast<size_t>(-1) )
|
||||||
{}
|
{}
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
Open Asset Import Library (ASSIMP)
|
Open Asset Import Library (ASSIMP)
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
Copyright (c) 2006-2010, ASSIMP Development Team
|
Copyright (c) 2006-2016, ASSIMP Development Team
|
||||||
All rights reserved.
|
All rights reserved.
|
||||||
|
|
||||||
Redistribution and use of this software in source and binary forms,
|
Redistribution and use of this software in source and binary forms,
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
Open Asset Import Library (ASSIMP)
|
Open Asset Import Library (ASSIMP)
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
Copyright (c) 2006-2010, ASSIMP Development Team
|
Copyright (c) 2006-2016, ASSIMP Development Team
|
||||||
All rights reserved.
|
All rights reserved.
|
||||||
|
|
||||||
Redistribution and use of this software in source and binary forms,
|
Redistribution and use of this software in source and binary forms,
|
||||||
|
|
Binary file not shown.
|
@ -185,6 +185,7 @@ def process_dir(d, outfile_results, zipin, result ):
|
||||||
shellparams = {'stdout':outfile_results, 'stderr':outfile_results, 'shell':False}
|
shellparams = {'stdout':outfile_results, 'stderr':outfile_results, 'shell':False}
|
||||||
|
|
||||||
print("Processing directory " + d)
|
print("Processing directory " + d)
|
||||||
|
all = ""
|
||||||
for f in sorted(os.listdir(d)):
|
for f in sorted(os.listdir(d)):
|
||||||
fullpath = os.path.join(d, f)
|
fullpath = os.path.join(d, f)
|
||||||
if os.path.isdir(fullpath) and not f[:1] == '.':
|
if os.path.isdir(fullpath) and not f[:1] == '.':
|
||||||
|
|
Loading…
Reference in New Issue