Lines Matching refs:root
39 def __init__(self, filename, path, context, root, mode, framework):
43 self.root = root
73 def __init__(self, context, root):
74 super(ES5ConformTestConfiguration, self).__init__(context, root)
78 current_root = join(self.root, 'data', 'TestCases')
80 harness += [join(self.root, 'data', 'SimpleTestHarness', f) for f in HARNESS_FILES]
81 harness += [join(self.root, 'harness-adapt.js')]
82 for root, dirs, files in os.walk(current_root):
86 root_path = root[len(self.root):].split(os.path.sep)
94 test = ES5ConformTestCase(join(root, file), full_path, self.context,
95 self.root, mode, harness)
103 status_file = join(self.root, 'es5conform.status')
108 def GetConfiguration(context, root):
109 return ES5ConformTestConfiguration(context, root)