diff options
author | Jens Axboe <axboe@kernel.dk> | 2019-10-21 08:42:04 -0600 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2019-10-21 08:42:04 -0600 |
commit | 93a22668c86c4475b988eac1d89b74f043a5fb88 (patch) | |
tree | 59b2c73fd3729aebd9975adaf2f3efcfb28d3922 | |
parent | a4b465536021ee9c4d6d450a9461ddfc116d08b1 (diff) | |
download | liburing-93a22668c86c4475b988eac1d89b74f043a5fb88.tar.gz liburing-93a22668c86c4475b988eac1d89b74f043a5fb88.tar.bz2 |
Shorten timeout tests
We use 1s for a lot of testing, shrink it down to 200 msec to allow
it to run a bit quicker.
Signed-off-by: Jens Axboe <axboe@kernel.dk>
-rw-r--r-- | test/timeout-overflow.c | 16 | ||||
-rw-r--r-- | test/timeout.c | 31 |
2 files changed, 26 insertions, 21 deletions
diff --git a/test/timeout-overflow.c b/test/timeout-overflow.c index 3d34d36..6445225 100644 --- a/test/timeout-overflow.c +++ b/test/timeout-overflow.c @@ -9,9 +9,15 @@ #include "liburing.h" -#define TIMEOUT_MSEC 1000 +#define TIMEOUT_MSEC 200 static int not_supported; +static void msec_to_ts(struct __kernel_timespec *ts, unsigned int msec) +{ + ts->tv_sec = TIMEOUT_MSEC / 1000; + ts->tv_nsec = (msec % 1000) * 1000000; +} + static int check_timeout_support() { struct io_uring_sqe *sqe; @@ -26,8 +32,7 @@ static int check_timeout_support() return 1; } sqe = io_uring_get_sqe(&ring); - ts.tv_sec = TIMEOUT_MSEC / 1000; - ts.tv_nsec = 0; + msec_to_ts(&ts, TIMEOUT_MSEC); io_uring_prep_timeout(sqe, &ts, 1, 0); ret = io_uring_submit(&ring); @@ -49,8 +54,10 @@ static int check_timeout_support() } io_uring_cqe_seen(&ring, cqe); + io_uring_queue_exit(&ring); return 0; err: + io_uring_queue_exit(&ring); return 1; } @@ -80,8 +87,7 @@ static int test_timeout_overflow() return 1; } - ts.tv_sec = TIMEOUT_MSEC / 1000; - ts.tv_nsec = 0; + msec_to_ts(&ts, TIMEOUT_MSEC); for (i = 0; i < 4; i++) { unsigned num; sqe = io_uring_get_sqe(&ring); diff --git a/test/timeout.c b/test/timeout.c index 71147ce..e2a5a30 100644 --- a/test/timeout.c +++ b/test/timeout.c @@ -12,10 +12,16 @@ #include "liburing.h" -#define TIMEOUT_MSEC 1000 +#define TIMEOUT_MSEC 200 static int not_supported; static int no_modify; +static void msec_to_ts(struct __kernel_timespec *ts, unsigned int msec) +{ + ts->tv_sec = TIMEOUT_MSEC / 1000; + ts->tv_nsec = (msec % 1000) * 1000000; +} + static unsigned long long mtime_since(const struct timeval *s, const struct timeval *e) { @@ -60,8 +66,7 @@ static int test_single_timeout_many(struct io_uring *ring) goto err; } - ts.tv_sec = TIMEOUT_MSEC / 1000; - ts.tv_nsec = 0; + msec_to_ts(&ts, TIMEOUT_MSEC); io_uring_prep_timeout(sqe, &ts, 0, 0); ret = io_uring_submit(ring); @@ -117,8 +122,7 @@ static int test_single_timeout_nr(struct io_uring *ring) goto err; } - ts.tv_sec = TIMEOUT_MSEC / 1000; - ts.tv_nsec = 0; + msec_to_ts(&ts, TIMEOUT_MSEC); io_uring_prep_timeout(sqe, &ts, 2, 0); sqe = io_uring_get_sqe(ring); @@ -195,8 +199,7 @@ static int test_single_timeout_wait(struct io_uring *ring) io_uring_prep_nop(sqe); io_uring_sqe_set_data(sqe, (void *) 1); - ts.tv_sec = 1; - ts.tv_nsec = 0; + msec_to_ts(&ts, 1000); i = 0; do { @@ -244,8 +247,7 @@ static int test_single_timeout(struct io_uring *ring) goto err; } - ts.tv_sec = TIMEOUT_MSEC / 1000; - ts.tv_nsec = 0; + msec_to_ts(&ts, TIMEOUT_MSEC); io_uring_prep_timeout(sqe, &ts, 0, 0); ret = io_uring_submit(ring); @@ -295,8 +297,7 @@ static int test_single_timeout_remove_notfound(struct io_uring *ring) goto err; } - ts.tv_sec = TIMEOUT_MSEC / 1000; - ts.tv_nsec = 0; + msec_to_ts(&ts, TIMEOUT_MSEC); io_uring_prep_timeout(sqe, &ts, 2, 0); sqe->user_data = 1; @@ -363,8 +364,7 @@ static int test_single_timeout_remove(struct io_uring *ring) goto err; } - ts.tv_sec = TIMEOUT_MSEC / 1000; - ts.tv_nsec = 0; + msec_to_ts(&ts, TIMEOUT_MSEC); io_uring_prep_timeout(sqe, &ts, 0, 0); sqe->user_data = 1; @@ -473,7 +473,7 @@ static int test_single_timeout_abs(struct io_uring *ring) } exp = mtime_since_now(&tv); - if (exp >= TIMEOUT_MSEC / 2 && exp <= (TIMEOUT_MSEC * 3) / 2) + if (exp >= 1000 / 2 && exp <= (1000 * 3) / 2) return 0; fprintf(stderr, "%s: Timeout seems wonky (got %llu)\n", __FUNCTION__, exp); err: @@ -495,8 +495,7 @@ static int test_single_timeout_exit(struct io_uring *ring) goto err; } - ts.tv_sec = 30; - ts.tv_nsec = 0; + msec_to_ts(&ts, 30000); io_uring_prep_timeout(sqe, &ts, 0, 0); ret = io_uring_submit(ring); |