mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-23 22:28:07 +00:00
Fix local remote provisioning test for android
This commit is contained in:
parent
d6fef910bb
commit
ce7a483183
2 changed files with 9 additions and 1 deletions
3
tester/rcfiles/marie_remote_localfile_android_rc
Normal file
3
tester/rcfiles/marie_remote_localfile_android_rc
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
[misc]
|
||||
config-uri=file:///data/data/org.linphone.tester/files/config_files/rcfiles/marie_remote_localfile2_rc
|
||||
|
||||
|
|
@ -90,8 +90,13 @@ static void remote_provisioning_default_values(void) {
|
|||
}
|
||||
|
||||
static void remote_provisioning_file(void) {
|
||||
LinphoneCoreManager* marie = linphone_core_manager_new2("marie_remote_localfile_rc", FALSE);
|
||||
LinphoneCoreManager* marie;
|
||||
const LpConfig* conf;
|
||||
#if ANDROID
|
||||
marie = linphone_core_manager_new2("marie_remote_localfile_android_rc", FALSE);
|
||||
#else
|
||||
marie = linphone_core_manager_new2("marie_remote_localfile_rc", FALSE);
|
||||
#endif
|
||||
CU_ASSERT_TRUE(wait_for(marie->lc,NULL,&marie->stat.number_of_LinphoneConfiguringSuccessful,1));
|
||||
|
||||
conf = linphone_core_get_config( marie->lc );
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue