1
0
mirror of https://gitlab.gnome.org/GNOME/libxslt synced 2025-07-29 15:41:13 +03:00

Also run Windows tests with --maxdepth 200

Fixes segfault in recursion tests.
This commit is contained in:
Nick Wellnhofer
2017-10-31 15:47:19 +01:00
parent 917da89598
commit 23b8c31e43

View File

@ -26,7 +26,7 @@ def runtests(xsl_dir, xml_dir="."):
if not path.isfile(xml_path):
continue
args = [ xsltproc, xsl_path, xml_path ]
args = [ xsltproc, "--maxdepth", "200", xsl_path, xml_path ]
p = Popen(args, stdout=PIPE, stderr=PIPE)
out_path = path.join(xml_dir, name + ".out")
err_path = path.join(xml_dir, name + ".err")