aboutsummaryrefslogtreecommitdiff
path: root/setup_chromeos.py
diff options
context:
space:
mode:
authorcmtice <cmtice@google.com>2013-11-04 16:38:37 -0500
committerchrome-internal-fetch <chrome-internal-fetch@google.com>2013-11-06 08:21:31 +0000
commit0440388677b2445f4f8273b6c2b4d82601b1aca3 (patch)
tree87678e20fb60fc1f4e4f82c32b24084744685db2 /setup_chromeos.py
parent28ed8f65f751c000c676ea67bdb2b0e20f73038a (diff)
downloadtoolchain-utils-0440388677b2445f4f8273b6c2b4d82601b1aca3.tar.gz
Make changes to run Telemetry tests in nightly infrastructure tests.
BUG=None TEST=Tested this running the nightly infrastructure cron jobs. Change-Id: I6cccee222b074e9410b45df6750c097430207746 Reviewed-on: https://chrome-internal-review.googlesource.com/147515 Reviewed-by: Luis Lozano <llozano@chromium.org> Commit-Queue: Caroline Tice <cmtice@google.com> Tested-by: Caroline Tice <cmtice@google.com>
Diffstat (limited to 'setup_chromeos.py')
-rwxr-xr-xsetup_chromeos.py14
1 files changed, 3 insertions, 11 deletions
diff --git a/setup_chromeos.py b/setup_chromeos.py
index 689b1ec9..c52c4e68 100755
--- a/setup_chromeos.py
+++ b/setup_chromeos.py
@@ -217,20 +217,12 @@ Use in combination with --version=latest or --version=common. Use
if ret:
return ret
- # Setup svn credentials for use inside the chroot
- if getpass.getuser() == "mobiletc-prebuild":
- chromium_username = "raymes"
- else:
- chromium_username = "$USER"
-
return cmd_executer.RunCommand(
- "svn ls --config-option config:auth:password-stores= "
- "--config-option "
- "servers:global:store-plaintext-passwords=yes "
- "--username " + chromium_username + "@google.com "
+ "svn ls "
"svn://svn.chromium.org/leapfrog-internal "
"svn://svn.chromium.org/chrome "
- "svn://svn.chromium.org/chrome-internal > /dev/null")
+ "svn://svn.chromium.org/chrome-internal "
+ "svn://svn.chromium.org/blink > /dev/null")
if __name__ == "__main__":