From 90e90fef12fca1fe34ea7008c7ebd629345fecdb Mon Sep 17 00:00:00 2001 From: Matthew Stidham Date: Fri, 5 Mar 2021 15:05:40 -0800 Subject: [PATCH] missed one Signed-off-by: Matthew Stidham --- py-scripts/regression_test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py-scripts/regression_test.sh b/py-scripts/regression_test.sh index 9aa33ca3..2f0d8755 100755 --- a/py-scripts/regression_test.sh +++ b/py-scripts/regression_test.sh @@ -50,7 +50,7 @@ function testgroup_delete_group { ./scenario.py --load test_l3_scenario_throughput;./testgroup.py --group_name group1 --add_group --add_cx cx0000,cx0001,cx0002 --remove_cx cx0003;./testgroup.py --group_name group1--del_group --debug } #Test array -if (( ${mgrlen} > 0 )); then +if [[ $mgrlen -gt 0 ]]; then function run_l3_longevity { ./test_l3_longevity.py --test_duration 15s --upstream_port eth1 --radio "radio==wiphy0 stations==4 ssid==$SSID_USED ssid_pw==$PASSWD_USED security==$SECURITY" --radio "radio==wiphy1 stations==4 ssid==$SSID_USED ssid_pw==$PASSWD_USED security==$SECURITY" --mgr $MGR }