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

Unified Diff: slave_utils.py

Issue 42111: Get Linux layout_test archiving working with ssh. (Closed) Base URL: svn://chrome-svn.corp.google.com/chrome/trunk/tools/buildbot/scripts/slave/
Patch Set: '' Created 11 years, 9 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 | « archive_layout_test_results.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: slave_utils.py
===================================================================
--- slave_utils.py (revision 11516)
+++ slave_utils.py (working copy)
@@ -27,7 +27,10 @@
def SubversionExe():
# TODO(pamg): move this into platform_utils to support Mac and Linux.
- return 'svn.bat' # Find it in the user's path.
+ if sys.platform in ['cygwin', 'win32']:
+ return 'svn.bat' # Find it in the user's path.
+ elif sys.platform in ['linux', 'linux2', 'darwin']:
+ return 'svn' # Find it in the user's path.
def SubversionRevision(wc_dir):
« no previous file with comments | « archive_layout_test_results.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698