From 87db19116c433b96549da70add395c6d0738fa58 Mon Sep 17 00:00:00 2001 From: Matthew Stidham Date: Thu, 4 Mar 2021 11:15:37 -0800 Subject: [PATCH] Make it easy to use regression_test with a local system Signed-off-by: Matthew Stidham --- py-scripts/regression_test.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/py-scripts/regression_test.sh b/py-scripts/regression_test.sh index 608cd410..c0215c2b 100755 --- a/py-scripts/regression_test.sh +++ b/py-scripts/regression_test.sh @@ -4,9 +4,9 @@ # OPTION TWO: ./test_all_scripts.sh 4 5 : this command runs py-script commands (in testCommands array) that include the py-script options beginning with 4 and 5 (inclusive) in case function ret_case_num. #Variables NUM_STA=4 -SSID_USED="jedway-wpa2-x2048-5-3" -PASSWD_USED="jedway-wpa2-x2048-5-3" -RADIO_USED="wiphy0" +SSID_USED=$1 || SSID_USED="jedway-wpa2-x2048-5-3" +PASSWD_USED=$2 || PASSWD_USED="jedway-wpa2-x2048-5-3" +RADIO_USED=$3 || RADIO_USED="wiphy0" SECURITY="wpa2" COL_NAMES="name,tx_bytes,rx_bytes,dropped"