Commit 94290c0f authored by Guido van Rossum's avatar Guido van Rossum

Sort default test arguments.

parent eb7cb377
...@@ -126,7 +126,11 @@ def main(): ...@@ -126,7 +126,11 @@ def main():
del args[0] del args[0]
if not args: if not args:
prefix = os.path.join("test", "test*.") 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 errors = 0
for arg in args: for arg in args:
print arg, print arg,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment