The prior patch to add the gating configuration didn't actually add the tests. Pull them in from RHEL 8. Related: rhbz#1989278
10 lines
104 B
C
10 lines
104 B
C
#include <liburing.h>
|
|
|
|
int
|
|
main()
|
|
{
|
|
struct io_uring ring;
|
|
|
|
return io_uring_queue_init(1, &ring, 0);
|
|
}
|