mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-22 13:48:09 +00:00
tester: update bc_tester_utils
This commit is contained in:
parent
32eb45dfc6
commit
aadad2dde3
3 changed files with 6 additions and 4 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -97,3 +97,4 @@ tester/stereo-record.wav
|
|||
.dirstamp
|
||||
git-clang-format.diff
|
||||
*.log
|
||||
.bc_tester_utils.tmp
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
Subproject commit 262c1ca2e48d5c0eedae86cc36579bacd234ee48
|
||||
Subproject commit 27fc72b2dc288ed15db9802ab9978b2e82d53cf2
|
||||
|
|
@ -52,7 +52,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||
|
||||
static char *bc_tester_resource_dir_prefix = NULL;
|
||||
// by default writable will always write near the executable
|
||||
static char *bc_tester_writable_dir_prefix = ".";
|
||||
static char *bc_tester_writable_dir_prefix = NULL;
|
||||
|
||||
int bc_printf_verbosity_info;
|
||||
int bc_printf_verbosity_error;
|
||||
|
|
@ -392,7 +392,7 @@ static void detect_res_prefix(const char* prog) {
|
|||
}
|
||||
|
||||
if (prefix != NULL) {
|
||||
if (bc_tester_resource_dir_prefix != NULL) {
|
||||
if (bc_tester_resource_dir_prefix == NULL) {
|
||||
printf("Resource directory set to %s\n", prefix);
|
||||
bc_tester_set_resource_dir_prefix(prefix);
|
||||
}
|
||||
|
|
@ -406,7 +406,7 @@ static void detect_res_prefix(const char* prog) {
|
|||
|
||||
// check that we can write in writable directory
|
||||
if (bc_tester_writable_dir_prefix != NULL) {
|
||||
writable_file = fopen("bc_tester_utils.tmp", "w");
|
||||
writable_file = fopen(".bc_tester_utils.tmp", "w");
|
||||
if (writable_file) {
|
||||
fclose(writable_file);
|
||||
}
|
||||
|
|
@ -431,6 +431,7 @@ void bc_tester_init(void (*ftester_printf)(int level, const char *format, va_lis
|
|||
tester_printf_va = ftester_printf;
|
||||
bc_printf_verbosity_error = iverbosity_error;
|
||||
bc_printf_verbosity_info = iverbosity_info;
|
||||
bc_tester_writable_dir_prefix = strdup(".");
|
||||
}
|
||||
|
||||
void bc_tester_set_max_vm(long max_vm_kb) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue