[Zpt] CVS: Packages/TAL - runtest.py:1.11

guido@digicool.com guido@digicool.com
Fri, 16 Mar 2001 11:17:50 -0500 (EST)


Update of /cvs-repository/Packages/TAL
In directory korak:/tmp/cvs-serv27776

Modified Files:
	runtest.py 
Log Message:
Sort default test arguments.


--- Updated File runtest.py in package Packages/TAL --
--- runtest.py	2001/03/15 17:51:54	1.10
+++ runtest.py	2001/03/16 16:17:48	1.11
@@ -126,7 +126,11 @@
         del args[0]
     if not args:
         prefix = os.path.join("test", "test*.")
-        args = glob.glob(prefix + "xml") + glob.glob(prefix + "html")
+        xmlargs = glob.glob(prefix + "xml")
+        xmlargs.sort()
+        htmlargs = glob.glob(prefix + "html")
+        htmlargs.sort()
+        args = xmlargs + htmlargs
     errors = 0
     for arg in args:
         print arg,