From 23b8c31e43a7b5aaba72342aeee3d3962102eb10 Mon Sep 17 00:00:00 2001 From: Nick Wellnhofer Date: Tue, 31 Oct 2017 15:47:19 +0100 Subject: Also run Windows tests with --maxdepth 200 Fixes segfault in recursion tests. --- win32/runtests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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") -- cgit v1.2.1