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

Unified Diff: tests/gclient_smoketest.py

Issue 3329023: Fixes the remaining failures gclient_smoketest on Windows.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools/
Patch Set: Created 10 years, 3 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/gclient_smoketest.py
===================================================================
--- tests/gclient_smoketest.py (revision 59138)
+++ tests/gclient_smoketest.py (working copy)
@@ -265,7 +265,7 @@
['running', 'running',
# This is due to the way svn update is called for a
# single file when File() is used in a DEPS file.
- ('running', self.root_dir + '/src/file/other'),
+ ('running', os.path.join(self.root_dir, 'src', 'file', 'other')),
'running', 'running', 'running', 'running'])
tree = self.mangle_svn_tree(
('trunk/src@2', 'src'),
@@ -318,7 +318,7 @@
'running', 'running',
# This is due to the way svn update is called for a single file when
# File() is used in a DEPS file.
- ('running', self.root_dir + '/src/file/other'),
+ ('running', os.path.join(self.root_dir, 'src', 'file', 'other')),
'running', 'running', 'running', 'running'])
self.checkString('Please fix your script, having invalid --revision flags '
'will soon considered an error.\n', results[1])
@@ -357,7 +357,7 @@
['running', 'running',
# This is due to the way svn update is called for a
# single file when File() is used in a DEPS file.
- ('running', self.root_dir + '/src/file/other'),
+ ('running', os.path.join(self.root_dir, 'src', 'file', 'other')),
'running', 'running', 'running', 'running'],
untangle=True)
tree = self.mangle_svn_tree(
@@ -604,7 +604,7 @@
['running', 'running',
# This is due to the way svn update is called for a
# single file when File() is used in a DEPS file.
- ('running', self.root_dir + '/src/file/other'),
+ ('running', os.path.join(self.root_dir, 'src', 'file', 'other')),
'running', 'running', 'running', 'running'])
def testInitialCheckoutFailed(self):
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698