Lines Matching full:path
40 def __init__(self, path, file, arch, mode, context, config, additional=None):
41 super(SimpleTestCase, self).__init__(context, path, arch, mode)
56 return self.path[-1]
104 def Ls(self, path):
105 return [f for f in os.listdir(path) if LS_RE.match(f)]
107 def ListTests(self, current_path, path, arch, mode):
108 all_tests = [current_path + [t] for t in self.Ls(os.path.join(self.root))]
111 if self.Contains(path, tst):
112 file_path = os.path.join(self.root, reduce(os.path.join, tst[1:], ""))
113 test_name = tst[:-1] + [os.path.splitext(tst[-1])[0]]
126 def ListTests(self, current_path, path, arch, mode):
128 current_path, path, arch, mode)
137 def Ls(self, path):
142 for subpath in os.listdir(path):
143 if os.path.isdir(os.path.join(path, subpath)):
144 for f in os.listdir(os.path.join(path, subpath)):
149 def ListTests(self, current_path, path, arch, mode):
150 all_tests = [current_path + t for t in self.Ls(os.path.join(self.root))]
153 if self.Contains(path, tst):
154 file_path = os.path.join(self.root, reduce(os.path.join, tst[1:], "") + ".js")
164 def ListTests(self, current_path, path, arch, mode):
166 current_path, path, arch, mode)