Skip to content
Snippets Groups Projects
Commit 7072b4ce9c63 authored by Nick Wellnhofer's avatar Nick Wellnhofer
Browse files

Also run Windows tests with --maxdepth 200

Fixes segfault in recursion tests.
parent 3121defd7fe0
No related branches found
No related tags found
No related merge requests found
......@@ -26,7 +26,7 @@
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")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment