test/test_syscalls.c: fix test failure on xfs src dir (#611)
authorAmir Goldstein <amir73il@gmail.com>
Wed, 2 Jun 2021 09:23:06 +0000 (12:23 +0300)
committerGitHub <noreply@github.com>
Wed, 2 Jun 2021 09:23:06 +0000 (10:23 +0100)
rename dir loop test fails when test tmp dir is xfs with an error
 test_rename_dir_loop() - rename : File exists

That is because xfs returns EEXIST for the case of renaming over
a non-empty directory.

According to rename(2) man page, EEXIST and ENOTEMPTY are both valid
error code in this case.

Signed-off-by: Amir Goldstein <amir73il@gmail.com>
test/test_syscalls.c

index 4fa5c871c0406f77b2ce9907ee00d086b649afb4..cd799ce17cbec89c5d10857da903977c0a09dd51 100644 (file)
@@ -1624,7 +1624,7 @@ static int test_rename_dir_loop(void)
 
        errno = 0;
        res = rename(PATH("a/b"), PATH2("a/d"));
-       if (res == 0 || errno != ENOTEMPTY) {
+       if (res == 0 || (errno != ENOTEMPTY && errno != EEXIST)) {
                PERROR("rename");
                goto fail;
        }