Revision: 3217
Author: [email protected]
Date: Wed Nov 4 08:55:24 2009
Log: Sort tests to increase predictability of mozilla test runs
in the face of suspected python bugs. Also remove some
unused code.
Review URL: http://codereview.chromium.org/365001
http://code.google.com/p/v8/source/detail?r=3217
Modified:
/branches/bleeding_edge/test/mozilla/testcfg.py
=======================================
--- /branches/bleeding_edge/test/mozilla/testcfg.py Wed Dec 3 02:21:50 2008
+++ /branches/bleeding_edge/test/mozilla/testcfg.py Wed Nov 4 08:55:24 2009
@@ -103,6 +103,7 @@
for excluded in EXCLUDED:
if excluded in dirs:
dirs.remove(excluded)
+ dirs.sort()
root_path = root[len(self.root):].split(os.path.sep)
root_path = current_path + [x for x in root_path if x]
framework = []
@@ -113,6 +114,7 @@
if exists(script):
framework.append(script)
framework.reverse()
+ files.sort()
for file in files:
if (not file in FRAMEWORK) and file.endswith('.js'):
full_path = root_path + [file[:-3]]
--~--~---------~--~----~------------~-------~--~----~
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
-~----------~----~----~----~------~----~------~--~---