From: Lennart Poettering Date: Tue, 28 Jan 2020 20:40:03 +0000 (+0100) Subject: test: fix rename_noreplace() test X-Git-Tag: v245-rc1~63^2 X-Git-Url: http://git-history.diyao.me/?a=commitdiff_plain;h=bcb1eadc0cf8053d219c0b2cab1c46235506981d;p=systemd%2F.git test: fix rename_noreplace() test This corrects the fix b81b9d406de, making the test operate like it was originally. --- diff --git a/src/test/test-fs-util.c b/src/test/test-fs-util.c index 1a5fd56658..d0c6fb82bf 100644 --- a/src/test/test-fs-util.c +++ b/src/test/test-fs-util.c @@ -739,7 +739,7 @@ static void test_rename_noreplace(void) { STRV_FOREACH(b, (char**) table) { _cleanup_free_ char *w = NULL; - w = strjoin(w, *b); + w = strjoin(z, *b); assert_se(w); if (access(w, F_OK) < 0) { @@ -747,7 +747,7 @@ static void test_rename_noreplace(void) { continue; } - assert_se(rename_noreplace(AT_FDCWD, w, AT_FDCWD, y) == -EEXIST); + assert_se(rename_noreplace(AT_FDCWD, x, AT_FDCWD, w) == -EEXIST); } y = strjoin(z, "/somethingelse");