Index: tests/gclient_smoketest.py |
diff --git a/tests/gclient_smoketest.py b/tests/gclient_smoketest.py |
index 8c60de75966bd4e8912e94f8b29c65851478e283..94959dd9ca4a8830df318c5073f8bbbaae4b9cae 100755 |
--- a/tests/gclient_smoketest.py |
+++ b/tests/gclient_smoketest.py |
@@ -558,6 +558,7 @@ class GClientSmokeGIT(GClientSmokeBase): |
def testRevInfo(self): |
if not self.enabled: |
return |
+ # TODO(maruel): Test multiple solutions. |
self.gclient(['config', self.git_base + 'repo_1', '--name', 'src']) |
self.gclient(['sync', '--deps', 'mac']) |
results = self.gclient(['revinfo', '--deps', 'mac']) |
@@ -592,7 +593,7 @@ class GClientSmokeBoth(GClientSmokeBase): |
# 3x svn checkout, 3x run hooks |
self.checkBlock(results[0], |
['running', 'running', 'running', 'running', 'running', |
- 'running']) |
+ 'running', 'running']) |
# TODO(maruel): Something's wrong here. git outputs to stderr 'Switched to |
# new branch \'hash\''. |
#self.checkString('', results[1]) |
@@ -607,6 +608,7 @@ class GClientSmokeBoth(GClientSmokeBase): |
tree['src/git_hooked1'] = 'git_hooked1' |
tree['src/git_hooked2'] = 'git_hooked2' |
tree['src/svn_hooked1'] = 'svn_hooked1' |
+ tree['src/svn_hooked2'] = 'svn_hooked2' |
self.assertTree(tree) |
def testMultiSolutionsMultiRev(self): |
@@ -673,7 +675,7 @@ class GClientSmokeBoth(GClientSmokeBase): |
self.gclient(['sync', '--deps', 'mac']) |
results = self.gclient(['recurse', 'sh', '-c', |
'echo $GCLIENT_SCM,$GCLIENT_URL,`pwd`']) |
- |
+ |
entries = [tuple(line.split(',')) |
for line in results[0].strip().split('\n')] |
logging.debug(entries) |