|
@@ -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
|
|
@@ -258,6 +262,5 @@ def run_test():
|
|
# -------------------------------------------------------------------------------
|
|
# -------------------------------------------------------------------------------
|
|
if __name__ == "__main__":
|
|
if __name__ == "__main__":
|
|
run_test()
|
|
run_test()
|
|
- input("Press any key to continue ...")
|
|
|
|
|
|
|
|
# vim: ai ts=4 sts=4 et sw=4
|
|
# vim: ai ts=4 sts=4 et sw=4
|