mirror of
				https://github.com/Telecominfraproject/wlan-lanforge-scripts.git
				synced 2025-10-31 10:48:02 +00:00 
			
		
		
		
	cv: dataplane test converted to use base-class methods.
And tweak default cmd line args for others so that they must be specified in order to override the other config options (such as raw files). Signed-off-by: Ben Greear <greearb@candelatech.com>
This commit is contained in:
		| @@ -304,18 +304,18 @@ def main(): | ||||
|                                      ) | ||||
|     cv_add_base_parser(parser)  # see cv_test_manager.py | ||||
|  | ||||
|     parser.add_argument("-u", "--upstream", type=str, default="1.1.eth1", | ||||
|     parser.add_argument("-u", "--upstream", type=str, default="", | ||||
|                         help="Upstream port for wifi capacity test ex. 1.1.eth1") | ||||
|  | ||||
|     parser.add_argument("--max_stations_2", type=int, default=100, | ||||
|     parser.add_argument("--max_stations_2", type=int, default=-1, | ||||
|                         help="Specify maximum 2.4Ghz stations") | ||||
|     parser.add_argument("--max_stations_5", type=int, default=100, | ||||
|     parser.add_argument("--max_stations_5", type=int, default=-1, | ||||
|                         help="Specify maximum 5Ghz stations") | ||||
|     parser.add_argument("--max_stations_dual", type=int, default=200, | ||||
|     parser.add_argument("--max_stations_dual", type=int, default=-1, | ||||
|                         help="Specify maximum stations for dual-band tests") | ||||
|     parser.add_argument("--dut5_0", type=str, default="NA", | ||||
|     parser.add_argument("--dut5_0", type=str, default="", | ||||
|                         help="Specify 5Ghz DUT entry.  Syntax is somewhat tricky:  DUT-name SSID BSID (bssid-idx), example: linksys-8450 Default-SSID-5gl c4:41:1e:f5:3f:25 (2)") | ||||
|     parser.add_argument("--dut2_0", type=str, default="NA", | ||||
|     parser.add_argument("--dut2_0", type=str, default="", | ||||
|                         help="Specify 5Ghz DUT entry.  Syntax is somewhat tricky:  DUT-name SSID BSID (bssid-idx), example: linksys-8450 Default-SSID-2g c4:41:1e:f5:3f:24 (1)") | ||||
|  | ||||
|     parser.add_argument("--radio2", action='append', nargs=1, default=[], | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Ben Greear
					Ben Greear