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

Unified Diff: server/site_linux_router.py

Issue 6805022: Explicitly select "HT40-" for 5GHz HT40 tests (Closed) Base URL: http://git.chromium.org/git/autotest.git@master
Patch Set: Caught a few more with grep Created 9 years, 8 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 | server/site_tests/network_WiFiMatFunc/033Check5HT40 » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: server/site_linux_router.py
diff --git a/server/site_linux_router.py b/server/site_linux_router.py
index c31a27211c2e223df85842d94b0db4b78b6cea0b..8e1b66499d000a540676b4aeb4f9350852c8b861 100644
--- a/server/site_linux_router.py
+++ b/server/site_linux_router.py
@@ -255,6 +255,9 @@ class LinuxRouter(object):
htcaps.add('[HT40-]')
htcaps.add('[HT40+]')
conf['wmm_enabled'] = 1
+ elif k in ('ht40+', 'ht40-'):
+ htcaps.add('[%s]' % k.upper())
+ conf['wmm_enabled'] = 1
elif k == 'shortgi':
htcaps.add('[SHORT-GI-20]')
htcaps.add('[SHORT-GI-40]')
« no previous file with comments | « no previous file | server/site_tests/network_WiFiMatFunc/033Check5HT40 » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698