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:
@@ -133,6 +133,10 @@ test_max_fds(int uring_fd)
|
|||||||
fd_as = mmap(NULL, UINT_MAX * sizeof(int), PROT_READ|PROT_WRITE,
|
fd_as = mmap(NULL, UINT_MAX * sizeof(int), PROT_READ|PROT_WRITE,
|
||||||
MAP_PRIVATE|MAP_ANONYMOUS, -1, 0);
|
MAP_PRIVATE|MAP_ANONYMOUS, -1, 0);
|
||||||
if (fd_as == MAP_FAILED) {
|
if (fd_as == MAP_FAILED) {
|
||||||
|
if (errno == ENOMEM) {
|
||||||
|
printf("Not enough memory for this test, skipping\n");
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
perror("mmap fd_as");
|
perror("mmap fd_as");
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user