From 483c7223be403361a2e5c58f4f15cd904a99c7fc Mon Sep 17 00:00:00 2001 From: Pavel Punsky Date: Sun, 4 Sep 2022 05:56:10 -0700 Subject: [PATCH] Fix duplicate TCP flag in run_tests.sh script (#971) Typo that caused UDP test to actually run TCP --- examples/run_tests.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/run_tests.sh b/examples/run_tests.sh index 5c3671d7..30e6b6bd 100755 --- a/examples/run_tests.sh +++ b/examples/run_tests.sh @@ -8,7 +8,7 @@ echo 'Running peer client' sleep 2 echo 'Running turn client TCP' -../bin/turnutils_uclient -t -e 127.0.0.1 -X -g -u user -W secret -t 127.0.0.1 | grep "start_mclient: tot_send_bytes ~ 1000, tot_recv_bytes ~ 1000" > /dev/null +../bin/turnutils_uclient -t -e 127.0.0.1 -X -g -u user -W secret 127.0.0.1 | grep "start_mclient: tot_send_bytes ~ 1000, tot_recv_bytes ~ 1000" > /dev/null if [ $? -eq 0 ]; then echo OK else @@ -17,7 +17,7 @@ else fi echo 'Running turn client UDP' -../bin/turnutils_uclient -e 127.0.0.1 -X -g -u user -W secret -t 127.0.0.1 | grep "start_mclient: tot_send_bytes ~ 1000, tot_recv_bytes ~ 1000" > /dev/null +../bin/turnutils_uclient -e 127.0.0.1 -X -g -u user -W secret 127.0.0.1 | grep "start_mclient: tot_send_bytes ~ 1000, tot_recv_bytes ~ 1000" > /dev/null if [ $? -eq 0 ]; then echo OK else