Comment 2 for bug 1824794

Revision history for this message
Po-Hsu Lin (cypressyew) wrote :

This issue was caused by the cleanup function, it will try to run SAFE_UNLINK() in the end of the test:
        SAFE_UNLINK(TEST_TMPFILE);
        SAFE_UNLINK(TEST_ELOOP);

As these should be the cleanup for the SAFE_SYMLINK() in the test:
        SAFE_SYMLINK(TEST_ELOOP, "test_file_eloop2");
        SAFE_SYMLINK("test_file_eloop2", TEST_ELOOP);

But the test was skipped due to the config issue. And the SAFE_UNLINK() causes the ENOENT warning.