X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=tests%2Funit%2Ftest_utils_expand_path.c;h=ff4394b684d95d195bd43f151b0109ebce14eaff;hb=2e96442dcb6d400164d43ca8c09dc480f123385a;hp=aa7984b4026b38e4385f11d26b07545444c9bb1c;hpb=4e557b9f7c41895d88b9ab99c01d73facdf1b4e5;p=lttng-tools.git diff --git a/tests/unit/test_utils_expand_path.c b/tests/unit/test_utils_expand_path.c index aa7984b40..ff4394b68 100644 --- a/tests/unit/test_utils_expand_path.c +++ b/tests/unit/test_utils_expand_path.c @@ -280,8 +280,8 @@ error: static void test_utils_expand_path(void) { char *result; - char name[100], tmppath[PATH_MAX]; - int i; + char name[100], tmppath[PATH_MAX], real_tree_origin[PATH_MAX]; + int i, treelen; /* Test valid cases */ for (i = 0; i < num_valid_tests; i++) { @@ -294,14 +294,24 @@ static void test_utils_expand_path(void) free(result); } + /* + * Get the realpath for the tree_origin since it can itself be a + * symlink. + */ + result = realpath(tree_origin, real_tree_origin); + if (!result) { + fail("realpath failed."); + return; + } + /* Test symlink tree cases */ - int treelen = strlen(tree_origin) + 1; + treelen = strlen(real_tree_origin) + 1; for (i = 0; i < num_symlink_tests; i++) { sprintf(name, "symlink tree test case: [tmppath/]%s", symlink_tests_inputs[i].input); snprintf(tmppath, PATH_MAX, "%s/%s", - tree_origin, symlink_tests_inputs[i].input); + real_tree_origin, symlink_tests_inputs[i].input); result = utils_expand_path(tmppath); ok(result != NULL && strcmp(result + treelen, symlink_tests_inputs[i].expected_result) == 0, name);