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

Unified Diff: server/site_wlan_connect.py

Issue 6603026: Test joining an IBSS (AdHoc) network (Closed) Base URL: http://git.chromium.org/git/autotest.git@master
Patch Set: s/iw_config/station_config/ Created 9 years, 10 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 | « server/site_wifitest.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: server/site_wlan_connect.py
diff --git a/server/site_wlan_connect.py b/server/site_wlan_connect.py
index 35a42d41c94ff58be9cf3eb424a73be170749771..6dc16cf8d6fc8cd781be180d74e8745bf753b0bc 100644
--- a/server/site_wlan_connect.py
+++ b/server/site_wlan_connect.py
@@ -165,6 +165,8 @@ def main(argv):
help='Report state changes and other debug info')
parser.add_option('--find_timeout', dest='find_timeout', type='int',
default=10, help='This is a hidden network')
+ parser.add_option('--mode', dest='mode', default='managed',
+ help='This is a hidden network')
(options, args) = parser.parse_args(argv[1:])
if len(argv) <= 4:
@@ -179,7 +181,7 @@ def main(argv):
connection_settings = {
'Type': 'wifi',
- 'Mode': 'managed',
+ 'Mode': options.mode,
'SSID': ssid,
'Security': security
}
« no previous file with comments | « server/site_wifitest.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698