From f2a580040acd4818f3b7d6b6e8affa7451e5ef47 Mon Sep 17 00:00:00 2001 From: anil-tegala Date: Mon, 27 May 2024 11:35:31 +0530 Subject: [PATCH] add over the ds option to roam test Signed-off-by: anil-tegala --- lf_libs/lf_tests.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/lf_libs/lf_tests.py b/lf_libs/lf_tests.py index b9b5b65a..707a01f5 100644 --- a/lf_libs/lf_tests.py +++ b/lf_libs/lf_tests.py @@ -3449,6 +3449,12 @@ class lf_tests(lf_libs): sta_name = key break + # enable over the ds in generate script if passed + if option == "otd": + gen_ds = 1 + else: + gen_ds = 0 + # Parse BSSID's as a lowercase string separated by , ap1_bssid = ap1_bssid.lower() @@ -3477,7 +3483,7 @@ class lf_tests(lf_libs): gen_scan_freqs=scan_freq, gen_sleep_interval="10000", gen_scan_sleep_interval="2000", - gen_ds=0, + gen_ds=gen_ds, duration="60000", default_sleep="250", auto_verify="30000",