Home
last modified time | relevance | path

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

/openbmc/openbmc/poky/scripts/
H A Dpatchtest25 from data import PatchTestInput
49 'repodir': PatchTestInput.repodir,
50 'commit' : PatchTestInput.basecommit,
51 'branch' : PatchTestInput.basebranch,
131 …suite = loader.discover(start_dir=PatchTestInput.testdir, pattern=PatchTestInput.pattern, top_leve…
175 patch_path = PatchTestInput.patch_path
176 log_results = PatchTestInput.log_results
216 PatchTestInput.set_namespace()
219 if PatchTestInput.debug:
223 if not PatchTestInput.topdir:
[all …]
/openbmc/openbmc/poky/meta/lib/patchtest/tests/
H A Dtest_mbox.py13 from data import PatchTestInput
17 "cd %s; git log --pretty='%%h#%%aN#%%cD:#%%s' -1" % PatchTestInput.repodir,
96 if PatchTestInput.repo.branch != "master":
97 …since patch is not intended for master branch. Target detected is %s" % PatchTestInput.repo.branch)
98 if not PatchTestInput.repo.ismerged:
100 … self.fail('Series does not apply on top of target branch %s' % PatchTestInput.repo.branch,
101 … data=[('Targeted branch', '%s (currently at %s)' % (PatchTestInput.repo.branch, commithash))])
105 if PatchTestInput.repo.ismerged:
H A Dbase.py11 from data import PatchTestInput
69 cls.mbox = mailbox.mbox(PatchTestInput.repo.patch)
75 … cls.patchset = unidiff.PatchSet.from_filename(PatchTestInput.repo.patch, encoding=u'UTF-8')
152 scripts_path = os.path.join(PatchTestInput.repodir, 'scripts', 'lib')
227 … added_paths.append(os.path.join(os.path.abspath(PatchTestInput.repodir), patch.path))
229 … modified_paths.append(os.path.join(os.path.abspath(PatchTestInput.repodir), patch.path))
231 … removed_paths.append(os.path.join(os.path.abspath(PatchTestInput.repodir), patch.path))
H A Dtest_metadata.py10 from data import PatchTestInput, PatchTestDataStore
115 if not PatchTestInput.repo.canbemerged:
130 if not PatchTestInput.repo.canbemerged:
187 …if not self.modified or PatchTestInput.repo.branch == "kirkstone" or PatchTestInput.repo.branch ==…
H A Dtest_python_pylint.py9 from data import PatchTestInput
/openbmc/openbmc/poky/meta/lib/patchtest/
H A Ddata.py30 class PatchTestInput(object): class