liburing/tests/sanity/uring.c
Jeff Moyer be92be7bee Add gating tests
The prior patch to add the gating configuration didn't actually
add the tests.  Pull them in from RHEL 8.

Related: rhbz#1989278
2021-08-02 16:13:57 -04:00

10 lines
104 B
C

#include <liburing.h>
int
main()
{
struct io_uring ring;
return io_uring_queue_init(1, &ring, 0);
}