Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1191)

Unified Diff: tests/gclient_smoketest.py

Issue 2395013002: Remove safesync support from gclient[_scm].py (Closed)
Patch Set: Rebase Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « recipe_modules/gclient/api.py ('k') | tests/gclient_test.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/gclient_smoketest.py
diff --git a/tests/gclient_smoketest.py b/tests/gclient_smoketest.py
index 996a0afe32a59f30acc4d8e6d76dd70235b89073..dace5872866e504c37665406cffc2bdab9e08bfc 100755
--- a/tests/gclient_smoketest.py
+++ b/tests/gclient_smoketest.py
@@ -207,7 +207,6 @@ class GClientSmoke(GClientSmokeBase):
' "managed" : True,\n'
' "custom_deps" : {\n'
' },\n'
- ' "safesync_url": "",\n'
' },\n'
']\n'
'cache_dir = None\n') % self.git_base)
@@ -220,7 +219,6 @@ class GClientSmoke(GClientSmokeBase):
' "managed" : True,\n'
' "custom_deps" : {\n'
' },\n'
- ' "safesync_url": "",\n'
' },\n'
']\n'
'cache_dir = None\n') % self.git_base)
@@ -233,7 +231,6 @@ class GClientSmoke(GClientSmokeBase):
' "managed" : True,\n'
' "custom_deps" : {\n'
' },\n'
- ' "safesync_url": "faa",\n'
' },\n'
']\n'
'cache_dir = None\n')
@@ -246,7 +243,6 @@ class GClientSmoke(GClientSmokeBase):
' "managed" : True,\n'
' "custom_deps" : {\n'
' },\n'
- ' "safesync_url": "",\n'
' },\n'
']\n'
'cache_dir = None\n')
@@ -255,7 +251,7 @@ class GClientSmoke(GClientSmokeBase):
os.remove(p)
results = self.gclient(['config', 'foo', 'faa', 'fuu'])
- err = ('Usage: gclient.py config [options] [url] [safesync url]\n\n'
+ err = ('Usage: gclient.py config [options] [url]\n\n'
'gclient.py: error: Inconsistent arguments. Use either --spec or one'
' or 2 args\n')
self.check(('', err, 2), results)
@@ -307,7 +303,6 @@ class GClientSmokeGIT(GClientSmokeBase):
def testSync(self):
if not self.enabled:
return
- # TODO(maruel): safesync.
self.gclient(['config', self.git_base + 'repo_1', '--name', 'src'])
# Test unversioned checkout.
self.parseGclient(
@@ -387,7 +382,6 @@ class GClientSmokeGIT(GClientSmokeBase):
def testSyncJobs(self):
if not self.enabled:
return
- # TODO(maruel): safesync.
self.gclient(['config', self.git_base + 'repo_1', '--name', 'src'])
# Test unversioned checkout.
self.parseGclient(
« no previous file with comments | « recipe_modules/gclient/api.py ('k') | tests/gclient_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698