summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Wellnhofer <wellnhofer@aevum.de>2017-10-31 15:47:19 +0100
committerNick Wellnhofer <wellnhofer@aevum.de>2017-10-31 15:47:19 +0100
commit23b8c31e43a7b5aaba72342aeee3d3962102eb10 (patch)
treeedd226ed188ef2694766ef7d00d804443bdf0dc9
parent917da8959814f7de50f7f1cfe5e8228f40c987b3 (diff)
downloadlibxslt-1.1.32-rc2.tar.gz
Also run Windows tests with --maxdepth 200v1.1.32-rc2
Fixes segfault in recursion tests.
-rw-r--r--win32/runtests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/runtests.py b/win32/runtests.py
index 4d9aabb7..f20c946d 100644
--- a/win32/runtests.py
+++ b/win32/runtests.py
@@ -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")