# HG changeset patch # User Simon Heimberg # Date 1351112971 -7200 # Node ID 42f8ee0e04ac41e01cff3191dfad29cec7b92733 # Parent df84bec19dcef425bd4c17d242015fc6c7c40461 run-tests: skip unnecessary operations on the args in the child proces The arguments are already sorted and never empty. diff -r df84bec19dce -r 42f8ee0e04ac tests/run-tests.py --- a/tests/run-tests.py Thu Nov 01 16:30:48 2012 -0500 +++ b/tests/run-tests.py Wed Oct 24 23:09:31 2012 +0200 @@ -1170,9 +1170,9 @@ checktools() - if len(args) == 0: - args = os.listdir(".") - args.sort() + if len(args) == 0: + args = os.listdir(".") + args.sort() tests = args