mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-31 02:09:22 +00:00
tester: fix autocompletion and minor tests changes
This commit is contained in:
parent
240818afd8
commit
7fe0661be6
3 changed files with 11 additions and 11 deletions
|
|
@ -180,7 +180,7 @@ void liblinphone_tester_check_rtcp(LinphoneCoreManager* caller, LinphoneCoreMana
|
|||
break;
|
||||
|
||||
}
|
||||
wait_for_until(caller->lc,callee->lc,&dummy,1,500); /*just to sleep while iterating*/
|
||||
wait_for_until(caller->lc,callee->lc,&dummy,1,20); /*just to sleep while iterating*/
|
||||
}while (!liblinphone_tester_clock_elapsed(&ts,12000));
|
||||
BC_ASSERT_TRUE(linphone_call_get_audio_stats(c1)->round_trip_delay>0.0);
|
||||
BC_ASSERT_TRUE(linphone_call_get_audio_stats(c2)->round_trip_delay>0.0);
|
||||
|
|
@ -366,9 +366,9 @@ void simple_call_base(bool_t enable_multicast_recv_side) {
|
|||
const char* marie_id = NULL;
|
||||
|
||||
belle_sip_object_enable_leak_detector(TRUE);
|
||||
begin=belle_sip_object_get_object_count();
|
||||
begin=belle_sip_object_get_object_count();
|
||||
|
||||
marie = linphone_core_manager_new( "marie_rc");
|
||||
marie = linphone_core_manager_new( "marie_rc");
|
||||
pauline = linphone_core_manager_new(transport_supported(LinphoneTransportTls) ? "pauline_rc" : "pauline_tcp_rc");
|
||||
|
||||
/* with the account manager, we might lose the identity */
|
||||
|
|
@ -1045,8 +1045,6 @@ static bool_t check_ice(LinphoneCoreManager* caller, LinphoneCoreManager* callee
|
|||
}
|
||||
|
||||
static void _call_with_ice_base(LinphoneCoreManager* pauline,LinphoneCoreManager* marie, bool_t caller_with_ice, bool_t callee_with_ice, bool_t random_ports) {
|
||||
bool_t call_ok;
|
||||
|
||||
if (callee_with_ice){
|
||||
linphone_core_set_firewall_policy(marie->lc,LinphonePolicyUseIce);
|
||||
}
|
||||
|
|
@ -1061,9 +1059,10 @@ static void _call_with_ice_base(LinphoneCoreManager* pauline,LinphoneCoreManager
|
|||
linphone_core_set_video_port(pauline->lc,-1);
|
||||
}
|
||||
|
||||
BC_ASSERT_TRUE((call_ok=call(pauline,marie)));
|
||||
|
||||
if (!call_ok) goto end;
|
||||
if (!BC_ASSERT_TRUE(call(pauline,marie)))
|
||||
goto end;
|
||||
|
||||
if (callee_with_ice && caller_with_ice) {
|
||||
/*wait for the ICE reINVITE to complete*/
|
||||
BC_ASSERT_TRUE(wait_for(pauline->lc,marie->lc,&pauline->stat.number_of_LinphoneCallStreamsRunning,2));
|
||||
|
|
|
|||
|
|
@ -70,16 +70,16 @@ _liblinphone_complete() {
|
|||
|
||||
# if latest arg does not start with '--', it is a custom value
|
||||
if [ $latest_is_empty = 0 ] && ! grep -q -- '^--' <<< "$latest_arg"; then
|
||||
# echo "yes!$prev_arg $has_not_set_suite"
|
||||
if [ "$prev_arg" = "--test" ] && [ $has_not_set_suite = 0 ]; then
|
||||
suite_name=$(echo $@ | sed -nE 's/.*--suite (.*) (--.*)$/\1/p' |sed "s@\\\\@@g")
|
||||
suite_name=$(echo $@ | sed -nE 's/.*--suite ([^(--)]*) (--.*)$/\1/p' |sed "s@\\\\@@g")
|
||||
completions="$($program --list-tests $suite_name)"
|
||||
elif [ "$prev_arg" = "--suite" ] || [ "$prev_arg" = "--list-tests" ]; then
|
||||
completions="$($program --list-suites)"
|
||||
fi
|
||||
elif [ "$latest_arg" = "--test" ]; then
|
||||
# list available tests if --suite was provided
|
||||
if [ $has_not_set_suite = 0 ]; then
|
||||
suite_name=$(echo $@ | sed -nE 's/.*--suite (.*) (--.*)$/\1/p' |sed "s@\\\\@@g")
|
||||
suite_name=$(echo $@ | sed -nE 's/.*--suite ([^(--)]*) (--.*)/\1/p' |sed "s@\\\\@@g")
|
||||
completions="$($program --list-tests $suite_name)"
|
||||
fi
|
||||
elif [ "$latest_arg" = "--suite" ] || [ "$latest_arg" = "--list-tests" ]; then
|
||||
|
|
|
|||
|
|
@ -126,7 +126,8 @@ static void register_with_refresh_base_3(LinphoneCore* lc
|
|||
break; /*no need to continue*/
|
||||
ms_usleep(10000);
|
||||
}
|
||||
BC_ASSERT_EQUAL(linphone_proxy_config_is_registered(proxy_cfg),(expected_final_state == LinphoneRegistrationOk), int, "%d");
|
||||
|
||||
BC_ASSERT_EQUAL(linphone_proxy_config_is_registered(proxy_cfg), expected_final_state == LinphoneRegistrationOk, int, "%d");
|
||||
BC_ASSERT_EQUAL(counters->number_of_LinphoneRegistrationNone,0, int, "%d");
|
||||
BC_ASSERT_TRUE(counters->number_of_LinphoneRegistrationProgress>=1);
|
||||
if (expected_final_state == LinphoneRegistrationOk) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue