Commit aadad2dd authored by Gautier Pelloux-Prayer's avatar Gautier Pelloux-Prayer
Browse files

tester: update bc_tester_utils

parent 32eb45df
Showing with 6 additions and 4 deletions
......@@ -97,3 +97,4 @@ tester/stereo-record.wav
.dirstamp
git-clang-format.diff
*.log
.bc_tester_utils.tmp
mediastreamer2 @ 27fc72b2
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) {
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment