From bb2c80ff0f7834691c892b6ea38114603b20abbe Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Tue, 14 May 2019 20:11:43 -0600 Subject: test/io_uring_register: don't fail max fd test if we run out of mem We need a lot of RAM for this case, my vm always fails it. Don't hard fail due to ENOMEM, just skip the test. Signed-off-by: Jens Axboe --- test/io_uring_register.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'test/io_uring_register.c') diff --git a/test/io_uring_register.c b/test/io_uring_register.c index 0ffdee7..7adf563 100644 --- a/test/io_uring_register.c +++ b/test/io_uring_register.c @@ -133,6 +133,10 @@ test_max_fds(int uring_fd) fd_as = mmap(NULL, UINT_MAX * sizeof(int), PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0); if (fd_as == MAP_FAILED) { + if (errno == ENOMEM) { + printf("Not enough memory for this test, skipping\n"); + return 0; + } perror("mmap fd_as"); exit(1); } -- cgit