regression tests: ignore pond.0.ply file due to overly long runtime.
parent
9e24acb187
commit
5a0c7058b5
|
@ -160,6 +160,10 @@ def process_dir(d, outfile_results, zipin, result):
|
||||||
process_dir(fullpath, outfile_results, zipin, result)
|
process_dir(fullpath, outfile_results, zipin, result)
|
||||||
continue
|
continue
|
||||||
|
|
||||||
|
if f in settings.files_to_ignore:
|
||||||
|
print("Ignoring " + f)
|
||||||
|
continue
|
||||||
|
|
||||||
for pppreset in settings.pp_configs_to_test:
|
for pppreset in settings.pp_configs_to_test:
|
||||||
filehash = utils.hashing(fullpath, pppreset)
|
filehash = utils.hashing(fullpath, pppreset)
|
||||||
failure = False
|
failure = False
|
||||||
|
|
|
@ -47,6 +47,14 @@ test scripts rely on this)
|
||||||
|
|
||||||
import os
|
import os
|
||||||
|
|
||||||
|
# -------------------------------------------------------------------------------
|
||||||
|
# Files to ignore (with reason)
|
||||||
|
#
|
||||||
|
# pond.0.ply - loads with 40k identical triangles, causing postprocessing
|
||||||
|
# to have quadratic runtime.
|
||||||
|
# -------------------------------------------------------------------------------
|
||||||
|
files_to_ignore = ["pond.0.ply"]
|
||||||
|
|
||||||
# -------------------------------------------------------------------------------
|
# -------------------------------------------------------------------------------
|
||||||
# List of file extensions to be excluded from the regression suite
|
# List of file extensions to be excluded from the regression suite
|
||||||
# File extensions are case insensitive
|
# File extensions are case insensitive
|
||||||
|
|
Loading…
Reference in New Issue