Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
liblinphone
Commits
e250b3c3
Commit
e250b3c3
authored
Sep 11, 2015
by
Gautier Pelloux-Prayer
Browse files
tester.c: fix (again...) resource directory path
parent
4abc46f7
Changes
2
Hide whitespace changes
Inline
Side-by-side
mediastreamer2
@
19d44b55
Subproject commit
ec510dc8e9f01e717acce3e37538e7a49344a062
Subproject commit
19d44b552f46272f43a57f3370badd1a66663f58
tester/liblinphone_tester.c
View file @
e250b3c3
...
...
@@ -196,9 +196,11 @@ int main (int argc, char *argv[])
liblinphone_tester_init
(
NULL
);
// this allows to launch
liblinphone_
tester from outside of tester directory
// this allows to launch tester from outside of tester directory
if
(
strstr
(
argv
[
0
],
".libs"
))
{
char
*
prefix
=
ms_strdup_printf
(
"%s%s"
,
argv
[
0
][
0
]
==
'/'
?
""
:
"./"
,
strstr
(
argv
[
0
],
".libs"
));
int
prefix_length
=
strstr
(
argv
[
0
],
".libs"
)
-
argv
[
0
]
+
1
;
char
*
prefix
=
ms_strdup_printf
(
"%s%.*s"
,
argv
[
0
][
0
]
==
'/'
?
""
:
"./"
,
prefix_length
,
argv
[
0
]);
ms_warning
(
"Resource prefix set to %s"
,
prefix
);
bc_tester_set_resource_dir_prefix
(
prefix
);
bc_tester_set_writable_dir_prefix
(
prefix
);
ms_free
(
prefix
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment