Commit ce464894 authored by maruel@chromium.org's avatar maruel@chromium.org

Remove semicolons from revinfo.

I've never known why there were added in the first place

Review URL: http://codereview.chromium.org/3155008

git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@55896 0039d316-1c4b-4281-b951-d872f2087c98
parent f50907b9
...@@ -914,10 +914,7 @@ solutions = [ ...@@ -914,10 +914,7 @@ solutions = [
entries[d.name] = d.parsed_url entries[d.name] = d.parsed_url
keys = sorted(entries.keys()) keys = sorted(entries.keys())
for x in keys: for x in keys:
line = '%s: %s' % (x, entries[x]) print('%s: %s' % (x, entries[x]))
if x is not keys[-1]:
line += ';'
print line
logging.info(str(self)) logging.info(str(self))
def ParseDepsFile(self): def ParseDepsFile(self):
......
...@@ -429,16 +429,16 @@ class GClientSmokeSVN(GClientSmokeBase): ...@@ -429,16 +429,16 @@ class GClientSmokeSVN(GClientSmokeBase):
self.gclient(['config', self.svn_base + 'trunk/src/']) self.gclient(['config', self.svn_base + 'trunk/src/'])
self.gclient(['sync', '--deps', 'mac']) self.gclient(['sync', '--deps', 'mac'])
results = self.gclient(['revinfo', '--deps', 'mac']) results = self.gclient(['revinfo', '--deps', 'mac'])
out = ('src: %(base)s/src;\n' out = ('src: %(base)s/src\n'
'src/file/other: File("%(base)s/other/DEPS");\n' 'src/file/other: File("%(base)s/other/DEPS")\n'
'src/other: %(base)s/other;\n' 'src/other: %(base)s/other\n'
'src/third_party/foo: %(base)s/third_party/foo@1\n' % 'src/third_party/foo: %(base)s/third_party/foo@1\n' %
{ 'base': self.svn_base + 'trunk' }) { 'base': self.svn_base + 'trunk' })
self.check((out, '', 0), results) self.check((out, '', 0), results)
results = self.gclient(['revinfo', '--deps', 'mac', '--actual']) results = self.gclient(['revinfo', '--deps', 'mac', '--actual'])
out = ('src: %(base)s/src@2;\n' out = ('src: %(base)s/src@2\n'
'src/file/other: %(base)s/other/DEPS@2;\n' 'src/file/other: %(base)s/other/DEPS@2\n'
'src/other: %(base)s/other@2;\n' 'src/other: %(base)s/other@2\n'
'src/third_party/foo: %(base)s/third_party/foo@1\n' % 'src/third_party/foo: %(base)s/third_party/foo@1\n' %
{ 'base': self.svn_base + 'trunk' }) { 'base': self.svn_base + 'trunk' })
self.check((out, '', 0), results) self.check((out, '', 0), results)
...@@ -633,8 +633,8 @@ class GClientSmokeGIT(GClientSmokeBase): ...@@ -633,8 +633,8 @@ class GClientSmokeGIT(GClientSmokeBase):
self.gclient(['config', self.git_base + 'repo_1', '--name', 'src']) self.gclient(['config', self.git_base + 'repo_1', '--name', 'src'])
self.gclient(['sync', '--deps', 'mac']) self.gclient(['sync', '--deps', 'mac'])
results = self.gclient(['revinfo', '--deps', 'mac']) results = self.gclient(['revinfo', '--deps', 'mac'])
out = ('src: %(base)srepo_1;\n' out = ('src: %(base)srepo_1\n'
'src/repo2: %(base)srepo_2@%(hash2)s;\n' 'src/repo2: %(base)srepo_2@%(hash2)s\n'
'src/repo2/repo_renamed: %(base)srepo_3\n' % 'src/repo2/repo_renamed: %(base)srepo_3\n' %
{ {
'base': self.git_base, 'base': self.git_base,
...@@ -644,8 +644,8 @@ class GClientSmokeGIT(GClientSmokeBase): ...@@ -644,8 +644,8 @@ class GClientSmokeGIT(GClientSmokeBase):
}) })
self.check((out, '', 0), results) self.check((out, '', 0), results)
results = self.gclient(['revinfo', '--deps', 'mac', '--actual']) results = self.gclient(['revinfo', '--deps', 'mac', '--actual'])
out = ('src: %(base)srepo_1@%(hash1)s;\n' out = ('src: %(base)srepo_1@%(hash1)s\n'
'src/repo2: %(base)srepo_2@%(hash2)s;\n' 'src/repo2: %(base)srepo_2@%(hash2)s\n'
'src/repo2/repo_renamed: %(base)srepo_3@%(hash3)s\n' % 'src/repo2/repo_renamed: %(base)srepo_3@%(hash3)s\n' %
{ {
'base': self.git_base, 'base': self.git_base,
...@@ -736,12 +736,12 @@ class GClientSmokeBoth(GClientSmokeBase): ...@@ -736,12 +736,12 @@ class GClientSmokeBoth(GClientSmokeBase):
'"url": "' + self.git_base + 'repo_1"}]']) '"url": "' + self.git_base + 'repo_1"}]'])
self.gclient(['sync', '--deps', 'mac']) self.gclient(['sync', '--deps', 'mac'])
results = self.gclient(['revinfo', '--deps', 'mac']) results = self.gclient(['revinfo', '--deps', 'mac'])
out = ('src: %(svn_base)s/src/;\n' out = ('src: %(svn_base)s/src/\n'
'src-git: %(git_base)srepo_1;\n' 'src-git: %(git_base)srepo_1\n'
'src/file/other: File("%(svn_base)s/other/DEPS");\n' 'src/file/other: File("%(svn_base)s/other/DEPS")\n'
'src/other: %(svn_base)s/other;\n' 'src/other: %(svn_base)s/other\n'
'src/repo2: %(git_base)srepo_2@%(hash2)s;\n' 'src/repo2: %(git_base)srepo_2@%(hash2)s\n'
'src/repo2/repo_renamed: %(git_base)srepo_3;\n' 'src/repo2/repo_renamed: %(git_base)srepo_3\n'
'src/third_party/foo: %(svn_base)s/third_party/foo@1\n') % { 'src/third_party/foo: %(svn_base)s/third_party/foo@1\n') % {
'svn_base': self.svn_base + 'trunk', 'svn_base': self.svn_base + 'trunk',
'git_base': self.git_base, 'git_base': self.git_base,
...@@ -751,12 +751,12 @@ class GClientSmokeBoth(GClientSmokeBase): ...@@ -751,12 +751,12 @@ class GClientSmokeBoth(GClientSmokeBase):
} }
self.check((out, '', 0), results) self.check((out, '', 0), results)
results = self.gclient(['revinfo', '--deps', 'mac', '--actual']) results = self.gclient(['revinfo', '--deps', 'mac', '--actual'])
out = ('src: %(svn_base)s/src/@2;\n' out = ('src: %(svn_base)s/src/@2\n'
'src-git: %(git_base)srepo_1@%(hash1)s;\n' 'src-git: %(git_base)srepo_1@%(hash1)s\n'
'src/file/other: %(svn_base)s/other/DEPS@2;\n' 'src/file/other: %(svn_base)s/other/DEPS@2\n'
'src/other: %(svn_base)s/other@2;\n' 'src/other: %(svn_base)s/other@2\n'
'src/repo2: %(git_base)srepo_2@%(hash2)s;\n' 'src/repo2: %(git_base)srepo_2@%(hash2)s\n'
'src/repo2/repo_renamed: %(git_base)srepo_3@%(hash3)s;\n' 'src/repo2/repo_renamed: %(git_base)srepo_3@%(hash3)s\n'
'src/third_party/foo: %(svn_base)s/third_party/foo@1\n') % { 'src/third_party/foo: %(svn_base)s/third_party/foo@1\n') % {
'svn_base': self.svn_base + 'trunk', 'svn_base': self.svn_base + 'trunk',
'git_base': self.git_base, 'git_base': self.git_base,
...@@ -857,13 +857,13 @@ class GClientSmokeFromCheckout(GClientSmokeBase): ...@@ -857,13 +857,13 @@ class GClientSmokeFromCheckout(GClientSmokeBase):
self.gclient(['sync', '--deps', 'mac']) self.gclient(['sync', '--deps', 'mac'])
results = self.gclient(['revinfo', '--deps', 'mac']) results = self.gclient(['revinfo', '--deps', 'mac'])
expected = ( expected = (
'./: None;\nfoo/bar: svn://127.0.0.1/svn/trunk/third_party/foo@1\n', './: None\nfoo/bar: svn://127.0.0.1/svn/trunk/third_party/foo@1\n',
'', 0) '', 0)
self.check(expected, results) self.check(expected, results)
# TODO(maruel): To be added after the refactor. # TODO(maruel): To be added after the refactor.
#results = self.gclient(['revinfo', '--snapshot']) #results = self.gclient(['revinfo', '--snapshot'])
#expected = ( #expected = (
# './: None;\nfoo/bar: svn://127.0.0.1/svn/trunk/third_party/foo@1\n', # './: None\nfoo/bar: svn://127.0.0.1/svn/trunk/third_party/foo@1\n',
# '', 0) # '', 0)
#self.check(expected, results) #self.check(expected, results)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment