[libxslt] Also run Windows tests with --maxdepth 200



commit 23b8c31e43a7b5aaba72342aeee3d3962102eb10
Author: Nick Wellnhofer <wellnhofer aevum de>
Date:   Tue Oct 31 15:47:19 2017 +0100

    Also run Windows tests with --maxdepth 200
    
    Fixes segfault in recursion tests.

 win32/runtests.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/win32/runtests.py b/win32/runtests.py
index 4d9aabb..f20c946 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")


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]