From: Markus Lehtonen Date: Mon, 16 May 2016 11:36:27 +0000 (+0300) Subject: oeqa.utils.git: implement GitRepo.get_current_branch() X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~24527 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dcba2302adab47b398f1ce7d09c38828ea9ae426;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git oeqa.utils.git: implement GitRepo.get_current_branch() Signed-off-by: Markus Lehtonen Signed-off-by: Ross Burton --- diff --git a/meta/lib/oeqa/buildperf/base.py b/meta/lib/oeqa/buildperf/base.py index 6a8d9feb022..adc3da3e2cf 100644 --- a/meta/lib/oeqa/buildperf/base.py +++ b/meta/lib/oeqa/buildperf/base.py @@ -116,12 +116,9 @@ class BuildPerfTestResult(unittest.TextTestResult): if not rev: rev = self.repo.rev_parse('HEAD') if not branch: - try: - # Strip 11 chars, i.e. 'refs/heads' from the beginning - branch = self.repo.run_cmd(['symbolic-ref', 'HEAD'])[11:] - except GitError: + branch = self.repo.get_current_branch() + if not branch: log.debug('Currently on detached HEAD') - branch = None return str(rev), str(branch) def addSuccess(self, test): diff --git a/meta/lib/oeqa/utils/git.py b/meta/lib/oeqa/utils/git.py index 647465467de..0fc8112321e 100644 --- a/meta/lib/oeqa/utils/git.py +++ b/meta/lib/oeqa/utils/git.py @@ -46,4 +46,12 @@ class GitRepo(object): # Revision does not exist return None + def get_current_branch(self): + """Get current branch""" + try: + # Strip 11 chars, i.e. 'refs/heads' from the beginning + return self.run_cmd(['symbolic-ref', 'HEAD'])[11:] + except GitError: + return None +