Home
last modified time | relevance | path

Searched refs:PatchtestParser (Results 1 – 6 of 6) sorted by relevance

/openbmc/openbmc/poky/scripts/
H A Dpatchtest25 from patchtest_parser import PatchtestParser
50 "repodir": PatchtestParser.repodir,
51 "commit": PatchtestParser.basecommit,
52 "branch": PatchtestParser.basebranch,
61 self.repo = PatchtestParser.repo = PatchTestRepo(**repoargs)
133 start_dir=PatchtestParser.testdir,
134 pattern=PatchtestParser.pattern,
135 top_level_dir=PatchtestParser.topdir,
187 patch_path = PatchtestParser.patch_path
188 log_results = PatchtestParser.log_results
[all …]
/openbmc/openbmc/poky/meta/lib/patchtest/tests/
H A Dtest_mbox.py13 from patchtest_parser import PatchtestParser
17 "cd %s; git log --pretty='%%h#%%aN#%%cD:#%%s' -1" % PatchtestParser.repodir,
87 if PatchtestParser.repo.patch.branch != "master":
91 % PatchtestParser.repo.patch.branch
93 if not PatchtestParser.repo.canbemerged:
97 % PatchtestParser.repo.patch.branch,
102 % (PatchtestParser.repo.patch.branch, commithash),
H A Dbase.py11 from patchtest_parser import PatchtestParser
68 cls.mbox = mailbox.mbox(PatchtestParser.repo.patch.path)
75 PatchtestParser.repo.patch.path, encoding="UTF-8"
153 scripts_path = os.path.join(PatchtestParser.repodir, "scripts", "lib")
230 os.path.abspath(PatchtestParser.repodir), patch.path
236 os.path.abspath(PatchtestParser.repodir), patch.path
242 os.path.abspath(PatchtestParser.repodir), patch.path
H A Dtest_metadata.py12 from patchtest_parser import PatchtestParser
113 if not PatchtestParser.repo.canbemerged:
130 if not PatchtestParser.repo.canbemerged:
197 or PatchtestParser.repo.patch.branch == "kirkstone"
198 or PatchtestParser.repo.patch.branch == "dunfell"
H A Dtest_python_pylint.py9 from patchtest_parser import PatchtestParser
/openbmc/openbmc/poky/meta/lib/patchtest/
H A Dpatchtest_parser.py22 class PatchtestParser(object): class