summaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
authorYu Watanabe <watanabe.yu+github@gmail.com>2023-04-17 05:19:07 +0900
committerYu Watanabe <watanabe.yu+github@gmail.com>2023-04-19 03:28:34 +0900
commit24be89ebd8e9fbf97cb60c304b615ab26869c204 (patch)
treebd11a80e427d171dc59233f5a0dc7146128baa5e /src/test
parentc0552b359c5b5dc0c130b831ce0067af99149f27 (diff)
downloadsystemd-24be89ebd8e9fbf97cb60c304b615ab26869c204.tar.gz
chase: make the result absolute when a symlink is absolute
As the path may be outside of the specified dir_fd.
Diffstat (limited to 'src/test')
-rw-r--r--src/test/test-chase.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/test/test-chase.c b/src/test/test-chase.c
index 52ea21a54c..c5fc08ca25 100644
--- a/src/test/test-chase.c
+++ b/src/test/test-chase.c
@@ -457,7 +457,16 @@ TEST(chaseat) {
fd = safe_close(fd);
- /* If the file descriptor does not point to the root directory, the result will be relative. */
+ /* If the file descriptor does not point to the root directory, the result will be relative
+ * unless the result is outside of the specified file descriptor. */
+
+ assert_se(chaseat(tfd, "abc", 0, &result, NULL) >= 0);
+ assert_se(streq(result, "/usr"));
+ result = mfree(result);
+
+ assert_se(chaseat(tfd, "/abc", 0, &result, NULL) >= 0);
+ assert_se(streq(result, "/usr"));
+ result = mfree(result);
assert_se(chaseat(tfd, "abc", CHASE_AT_RESOLVE_IN_ROOT, NULL, NULL) == -ENOENT);
assert_se(chaseat(tfd, "/abc", CHASE_AT_RESOLVE_IN_ROOT, NULL, NULL) == -ENOENT);