Home | History | Annotate | Download | only in es5conform

Lines Matching refs:root

39   def __init__(self, filename, path, context, root, mode, framework):
44 self.root = root
74 def __init__(self, context, root):
75 super(ES5ConformTestConfiguration, self).__init__(context, root)
79 current_root = join(self.root, 'data', 'TestCases')
81 harness += [join(self.root, 'data', 'SimpleTestHarness', f) for f in HARNESS_FILES]
82 harness += [join(self.root, 'harness-adapt.js')]
83 for root, dirs, files in os.walk(current_root):
86 root_path = root[len(self.root):].split(os.path.sep)
93 test = ES5ConformTestCase(join(root, file), full_path, self.context,
94 self.root, mode, harness)
102 status_file = join(self.root, 'es5conform.status')
107 def GetConfiguration(context, root):
108 return ES5ConformTestConfiguration(context, root)