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 <axboe@kernel.dk>
This commit is contained in:
Jens Axboe
2019-05-14 20:11:43 -06:00
parent 1982bfd44d
commit bb2c80ff0f

View File

@@ -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);
}