Lines Matching refs:root
59 def __init__(self, filename, path, context, root, mode, framework):
64 self.root = root
79 join(self.root, 'mozilla-shell-emulation.js')]
93 def __init__(self, context, root):
94 super(MozillaTestConfiguration, self).__init__(context, root)
99 current_root = join(self.root, 'data', test_dir)
100 for root, dirs, files in os.walk(current_root):
107 root_path = root[len(self.root):].split(os.path.sep)
113 script = join(self.root, reduce(join, dir, ''), 'shell.js')
123 test = MozillaTestCase(join(root, file), full_path, self.context,
124 self.root, mode, framework)
132 status_file = join(self.root, 'mozilla.status')
137 def GetConfiguration(context, root):
138 return MozillaTestConfiguration(context, root)