summaryrefslogtreecommitdiffstats
path: root/test/mozilla/testcfg.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/mozilla/testcfg.py')
-rw-r--r--test/mozilla/testcfg.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/mozilla/testcfg.py b/test/mozilla/testcfg.py
index 477b2b2f..d1c1767a 100644
--- a/test/mozilla/testcfg.py
+++ b/test/mozilla/testcfg.py
@@ -103,6 +103,7 @@ class MozillaTestConfiguration(test.TestConfiguration):
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 @@ class MozillaTestConfiguration(test.TestConfiguration):
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]]