OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:gitlog
(Results
1 - 3
of
3
) sorted by null
/external/autotest/client/common_lib/
revision_control.py
479
gitlog
= self.gitcmd(cmd, True)
480
if
gitlog
.exit_status != 0:
481
logging.error(
gitlog
.stderr)
482
raise error.CmdError('Failed to find git sha1 revision',
gitlog
)
484
return
gitlog
.stdout.strip('\n')
505
gitlog
= self.gitcmd(cmd, True)
506
if
gitlog
.exit_status != 0:
507
logging.error(
gitlog
.stderr)
508
raise error.CmdError('Failed to checkout git branch',
gitlog
)
510
logging.info(
gitlog
.stdout
[
all
...]
/external/v8/tools/node/
test_update_node.py
111
gitlog
= subprocess.check_output(
115
self.assertEquals(EXPECTED_GIT_DIFF.strip(),
gitlog
.strip())
118
gitlog
= subprocess.check_output(
122
self.assertIn('+zonk',
gitlog
.strip())
test_backport_node.py
59
gitlog
= subprocess.check_output(
63
self.assertIn('+zonk',
gitlog
.strip())
Completed in 101 milliseconds