summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJens Axboe <axboe@kernel.dk>2020-03-04 12:28:22 -0700
committerJens Axboe <axboe@kernel.dk>2020-03-04 12:28:22 -0700
commit122f64b216caecf78c3c1c6e4c50789e33104c0d (patch)
tree1a25a8460f5faf444c7b8ae31e73ee5b158315f0 /test
parent3fb377e7efbfec8ae5f0f6f8fa7b2fc2987e90b6 (diff)
downloadliburing-fd-select.tar.gz
liburing-fd-select.tar.bz2
test/orc: soft fail if filename isn't givenfd-select
Otherwise the test suite complains. Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'test')
-rw-r--r--test/orc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/orc.c b/test/orc.c
index eda5b7a..1421342 100644
--- a/test/orc.c
+++ b/test/orc.c
@@ -79,7 +79,7 @@ int main(int argc, char *argv[])
if (argc < 2) {
fprintf(stderr, "%s: <file>\n", argv[0]);
- return 1;
+ return 0;
}
ret = io_uring_queue_init(8, &ring, 0);