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

Unified Diff: tests/gclient_smoketest.py

Issue 2699005: Add more forced revisions in fake_repos.py and adds a recursive DEPS. (Closed)
Patch Set: Fix -l and standalone fake_repos.py usage Created 10 years, 6 months 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 | « tests/fake_repos.py ('k') | no next file » | 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 edc4a972afcd7b202b28598cd294545292e0755f..b89f16ca034caff5cb2fbe4c14a618f7d9eaacfc 100755
--- a/tests/gclient_smoketest.py
+++ b/tests/gclient_smoketest.py
@@ -218,7 +218,7 @@ class GClientSmokeSVN(GClientSmokeBase):
tree = self.mangle_svn_tree(
('trunk/src@1', 'src'),
('trunk/third_party/foo@2', 'src/third_party/fpp'),
- ('trunk/other@2', 'src/other'),
+ ('trunk/other@1', 'src/other'),
('trunk/third_party/foo@2', 'src/third_party/prout'))
self.assertTree(tree)
# Test incremental sync: delete-unversioned_trees isn't there.
@@ -256,7 +256,7 @@ class GClientSmokeSVN(GClientSmokeBase):
tree = self.mangle_svn_tree(
('trunk/src@1', 'src'),
('trunk/third_party/foo@2', 'src/third_party/fpp'),
- ('trunk/other@2', 'src/other'),
+ ('trunk/other@1', 'src/other'),
('trunk/third_party/foo@2', 'src/third_party/prout'))
self.assertTree(tree)
@@ -346,7 +346,7 @@ class GClientSmokeSVN(GClientSmokeBase):
tree = self.mangle_svn_tree(
('trunk/src@1', 'src'),
('trunk/third_party/foo@2', 'src/third_party/fpp'),
- ('trunk/other@2', 'src/other'),
+ ('trunk/other@1', 'src/other'),
('trunk/third_party/prout@2', 'src/third_party/prout'))
self.assertTree(tree)
@@ -424,7 +424,7 @@ class GClientSmokeGIT(GClientSmokeBase):
self.assertEquals(0, results[2])
tree = self.mangle_git_tree(('repo_1@1', 'src'),
('repo_2@2', 'src/repo2'),
- ('repo_3@2', 'src/repo2/repo3'),
+ ('repo_3@1', 'src/repo2/repo3'),
('repo_4@2', 'src/repo4'))
tree['src/git_hooked2'] = 'git_hooked2'
self.assertTree(tree)
@@ -435,7 +435,7 @@ class GClientSmokeGIT(GClientSmokeBase):
self.assertEquals(0, results[2])
tree = self.mangle_git_tree(('repo_1@2', 'src'),
('repo_2@1', 'src/repo2'),
- ('repo_3@2', 'src/repo2/repo3'),
+ ('repo_3@1', 'src/repo2/repo3'),
('repo_3@2', 'src/repo2/repo_renamed'),
('repo_4@2', 'src/repo4'))
tree['src/git_hooked1'] = 'git_hooked1'
@@ -481,7 +481,7 @@ class GClientSmokeGIT(GClientSmokeBase):
self.assertEquals(0, results[2])
tree = self.mangle_git_tree(('repo_1@1', 'src'),
('repo_2@2', 'src/repo2'),
- ('repo_3@2', 'src/repo2/repo3'),
+ ('repo_3@1', 'src/repo2/repo3'),
('repo_4@2', 'src/repo4'))
self.assertTree(tree)
@@ -622,12 +622,12 @@ class GClientSmokeBoth(GClientSmokeBase):
self.assertEquals(0, results[2])
tree = self.mangle_git_tree(('repo_1@1', 'src-git'),
('repo_2@2', 'src/repo2'),
- ('repo_3@2', 'src/repo2/repo3'),
+ ('repo_3@1', 'src/repo2/repo3'),
('repo_4@2', 'src/repo4'))
tree.update(self.mangle_svn_tree(
('trunk/src@1', 'src'),
('trunk/third_party/foo@2', 'src/third_party/fpp'),
- ('trunk/other@2', 'src/other'),
+ ('trunk/other@1', 'src/other'),
('trunk/third_party/foo@2', 'src/third_party/prout')))
self.assertTree(tree)
« no previous file with comments | « tests/fake_repos.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698