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

Unified Diff: tools/swarming_load_test_client.py

Issue 29783003: Fix config typo in load tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/swarm_client
Patch Set: Created 7 years, 2 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 | « tools/swarming_load_test_bot.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/swarming_load_test_client.py
diff --git a/tools/swarming_load_test_client.py b/tools/swarming_load_test_client.py
index e9c312c689c93bc8924d80dd9c79aef607decd1b..27f49ee07d172f892dd7fa7cbe92e244a323b012 100755
--- a/tools/swarming_load_test_client.py
+++ b/tools/swarming_load_test_client.py
@@ -64,8 +64,8 @@ def trigger_task(swarming_url, progress, unique, timeout, index):
logging.info('trigger')
manifest = swarming.Manifest(
- None, name, 1, None, 'Comodor64', '', 'http://localhost:1', False, False,
- 100, None)
+ None, name, 1, None, swarming_load_test_bot.OS_NAME, '',
+ 'http://localhost:1', False, False, 100, None)
data = {'request': manifest.to_json()}
response = net.url_open(swarming_url + '/test', data=data)
if not response:
@@ -78,7 +78,7 @@ def trigger_task(swarming_url, progress, unique, timeout, index):
'test_case_name': name,
'test_keys': [
{
- 'config_name': 'Comodor64',
+ 'config_name': swarming_load_test_bot.OS_NAME,
'num_instances': 1,
'instance_index': 0,
},
« no previous file with comments | « tools/swarming_load_test_bot.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698