From f0dea83e189e4f41442cf52f4dca7762cabbce6d Mon Sep 17 00:00:00 2001 From: Marco Capetta Date: Wed, 16 Jan 2019 12:33:54 +0100 Subject: [PATCH] TT#50152 Skip invite_retrans scenarios from retransmission check This is necessary to avoid mis-interpretation of the retransmission Change-Id: I4df979577c8b650ed8fe7a0637c78843a286b5ea --- run_tests.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/run_tests.sh b/run_tests.sh index 472a266c..95a1448b 100755 --- a/run_tests.sh +++ b/run_tests.sh @@ -115,6 +115,9 @@ fix_retransmissions() { echo "$(date) - Checking retransmission issues" for t in ${SCENARIOS}; do echo "$(date) - - Scenario: ${t}" + if [ "${t}" == "invite_retrans" ] ; then + continue + fi RETRANS_ISSUE=false file_find=($(find "${LOG_DIR}/${t}" -maxdepth 1 -name '*.json' | sort)) for json_file in "${file_find[@]}" ; do