Lines Matching +full:self +full:- +full:describing

15 FIND_INFRA_IN_PATCH = re.compile(r"^\+\$\(eval \$\((host-)?([^-]*)-package\)\)$")
38 FIND_INFRA_IN_MK = re.compile(r"^\$\(eval \$\((host-)?([^-]*)-package\)\)$")
43 file describing a package, and find the infrastructure it's using."""
73 # Unit-test parsing functions
77 """Generate all test-cases from a given test-suite.
107 def __init__(self, name, files): argument
108 self.name = name
109 self.files = files
110 self.packages = parse_developer_packages(files)
111 self.architectures = parse_developer_architectures(files)
112 self.infras = parse_developer_infras(files)
113 self.runtime_tests = parse_developer_runtime_tests(files)
114 self.defconfigs = parse_developer_defconfigs(files)
116 def hasfile(self, f): argument
117 for fs in self.files:
122 def __repr__(self): argument
123 name = '\'' + self.name.split(' <')[0][:20] + '\''
125 if len(self.files):
126 things.append('{} files'.format(len(self.files)))
127 if len(self.packages):
128 things.append('{} pkgs'.format(len(self.packages)))
129 if len(self.architectures):
130 things.append('{} archs'.format(len(self.architectures)))
131 if len(self.infras):
132 things.append('{} infras'.format(len(self.infras)))
133 if len(self.runtime_tests):
134 things.append('{} tests'.format(len(self.runtime_tests)))
135 if len(self.defconfigs):
136 things.append('{} defconfigs'.format(len(self.defconfigs)))
193 m = re.match(r"^package/pkg-([^.]*).mk$", fname)
202 return {os.path.basename(fname[:-10])
279 cmd = ["git", "--git-dir", os.path.join(basepath, ".git"), "ls-files"]