Home | History | Annotate | Download | only in mjsunit

Lines Matching refs:root

76       result.append(join(dirname(self.config.root), '..', a_file))
77 framework = join(dirname(self.config.root), 'mjsunit', 'mjsunit.js')
115 def __init__(self, context, root):
116 super(MjsunitTestConfiguration, self).__init__(context, root)
124 mjsunit = [current_path + [t] for t in self.Ls(self.root)]
125 regress = [current_path + ['regress', t] for t in self.Ls(join(self.root, 'regress'))]
126 bugs = [current_path + ['bugs', t] for t in self.Ls(join(self.root, 'bugs'))]
127 third_party = [current_path + ['third_party', t] for t in self.Ls(join(self.root, 'third_party'))]
128 tools = [current_path + ['tools', t] for t in self.Ls(join(self.root, 'tools'))]
129 compiler = [current_path + ['compiler', t] for t in self.Ls(join(self.root, 'compiler'))]
140 file_path = join(self.root, reduce(join, test[1:], "") + ".js")
149 status_file = join(self.root, 'mjsunit.status')
155 def GetConfiguration(context, root):
156 return MjsunitTestConfiguration(context, root)