It didn't specify that it's an error, and ultimately either returned an early 0 or, now, T_EXIT_SKIP. Clarify in the logging what it actually is. Signed-off-by: Eli Schwartz <eschwartz93@xxxxxxxxx> --- test/file-register.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/file-register.c b/test/file-register.c index ae35c37..634ef81 100644 --- a/test/file-register.c +++ b/test/file-register.c @@ -306,7 +306,7 @@ static int test_sparse(struct io_uring *ring) ret = io_uring_register_files(ring, files, 200); if (ret) { if (ret == -EBADF) { - fprintf(stdout, "Sparse files not supported\n"); + fprintf(stdout, "Sparse files not supported, skipping\n"); no_update = 1; goto done; } -- 2.35.1