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:
@ -26,7 +26,7 @@ def runtests(xsl_dir, xml_dir="."):
|
|||||||
if not path.isfile(xml_path):
|
if not path.isfile(xml_path):
|
||||||
continue
|
continue
|
||||||
|
|
||||||
args = [ xsltproc, xsl_path, xml_path ]
|
args = [ xsltproc, "--maxdepth", "200", xsl_path, xml_path ]
|
||||||
p = Popen(args, stdout=PIPE, stderr=PIPE)
|
p = Popen(args, stdout=PIPE, stderr=PIPE)
|
||||||
out_path = path.join(xml_dir, name + ".out")
|
out_path = path.join(xml_dir, name + ".out")
|
||||||
err_path = path.join(xml_dir, name + ".err")
|
err_path = path.join(xml_dir, name + ".err")
|
||||||
|
Reference in New Issue
Block a user