summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJens Axboe <axboe@kernel.dk>2020-04-08 09:48:16 -0600
committerJens Axboe <axboe@kernel.dk>2020-04-08 09:48:16 -0600
commitd50b2df35dfcfcb5a244dd0801228fbd35cda8f7 (patch)
tree06bad17870251e3fba6737fdf9c45d582ae5ac2c /test
parent29896217a80edb511f3d5eb8b766ee422aa6d270 (diff)
downloadliburing-d50b2df35dfcfcb5a244dd0801228fbd35cda8f7.tar.gz
liburing-d50b2df35dfcfcb5a244dd0801228fbd35cda8f7.tar.bz2
test/lfs-openat: unlink the right file
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'test')
-rw-r--r--test/lfs-openat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lfs-openat.c b/test/lfs-openat.c
index d52e215..1765fb5 100644
--- a/test/lfs-openat.c
+++ b/test/lfs-openat.c
@@ -86,6 +86,6 @@ int main(int argc, char *argv[])
io_uring_queue_exit(&ring);
close(dfd);
- unlink(fn);
+ unlink("/tmp/io_uring_openat_test");
return ret;
}