summaryrefslogtreecommitdiff
path: root/tests/gtest_dlt_daemon_gateway.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/gtest_dlt_daemon_gateway.sh')
-rwxr-xr-xtests/gtest_dlt_daemon_gateway.sh16
1 files changed, 15 insertions, 1 deletions
diff --git a/tests/gtest_dlt_daemon_gateway.sh b/tests/gtest_dlt_daemon_gateway.sh
index d74f519..4d952e5 100755
--- a/tests/gtest_dlt_daemon_gateway.sh
+++ b/tests/gtest_dlt_daemon_gateway.sh
@@ -153,6 +153,13 @@ setupTest()
echo "Error in creating dlt_gateway file"
return 1
fi
+
+ if [ $# -eq 1 ] && [ "$1" == "1" ]
+ then
+ echo "[General]" >>$tmpPath/dlt_gateway.conf
+ echo "Interval=1">>$tmpPath/dlt_gateway.conf
+ fi
+
echo "[PassiveNode1]" >>$tmpPath/dlt_gateway.conf
echo "IPaddress=$ipaddr">>$tmpPath/dlt_gateway.conf
echo "Port=3490" >>$tmpPath/dlt_gateway.conf
@@ -235,7 +242,14 @@ then
fi
echo "Initializing test"
-setupTest
+
+if [ $# -eq 1 ] && [ "$1" == "-w" ]
+then
+ echo "Including General section in dlt_gateway.conf"
+ setupTest 1
+else
+ setupTest
+fi
if [ $? -ne '0' ]
then