Lines Matching refs:root
39 def __init__(self, filename, path, context, root, mode, framework):
43 self.root = root
75 def __init__(self, context, root):
76 super(Test262TestConfiguration, self).__init__(context, root)
79 current_root = join(self.root, 'data', 'test', 'suite', 'ietestcenter')
80 harness = [join(self.root, 'data', 'test', 'harness', f)
82 harness += [join(self.root, 'harness-adapt.js')]
83 for root, dirs, files in os.walk(current_root):
87 root_path = root[len(self.root):].split(os.path.sep)
94 test = Test262TestCase(join(root, file), test_path, self.context,
95 self.root, mode, harness)
117 status_file = join(self.root, 'test262.status')
122 def GetConfiguration(context, root):
123 return Test262TestConfiguration(context, root)