summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Axboe <axboe@kernel.dk>2020-01-26 10:22:36 -0700
committerJens Axboe <axboe@kernel.dk>2020-01-26 10:22:36 -0700
commitc32b6d1de68a60e008128cab2914c6448d4b4aff (patch)
tree3356eeebe8fd912f4695de14ec6a90616b0ee43b
parent17a431278321ac9214146116072887a8ce79af0a (diff)
downloadliburing-c32b6d1de68a60e008128cab2914c6448d4b4aff.tar.gz
liburing-c32b6d1de68a60e008128cab2914c6448d4b4aff.tar.bz2
test/madvise: don't fail on "suspicious timings"
The rest isn't very reliable in terms of the timing. Just run the test and let it pass regardless, dump the bad/good timing runs. Signed-off-by: Jens Axboe <axboe@kernel.dk>
-rw-r--r--test/madvise.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/test/madvise.c b/test/madvise.c
index c6b1db0..da788fc 100644
--- a/test/madvise.c
+++ b/test/madvise.c
@@ -194,10 +194,8 @@ int main(int argc, char *argv[])
break;
}
- if (bad > good) {
- fprintf(stderr, "Suspicious timings\n");
- goto err;
- }
+ if (bad > good)
+ fprintf(stderr, "Suspicious timings (%u > %u)\n", bad, good);
unlink(".madvise.tmp");
io_uring_queue_exit(&ring);
return 0;