MCPcopy Create free account
hub / github.com/axboe/liburing / main

Function main

test/connect-rep.c:180–200  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

178}
179
180int main(int argc, char *argv[])
181{
182 int ret;
183
184 if (argc > 1)
185 return T_EXIT_SKIP;
186
187 ret = test(0);
188 if (ret == T_EXIT_FAIL) {
189 fprintf(stderr, "test(0) failed\n");
190 return T_EXIT_FAIL;
191 }
192
193 ret = test(IORING_SETUP_SQPOLL);
194 if (ret == T_EXIT_FAIL) {
195 fprintf(stderr, "test(SQPOLL) failed\n");
196 return T_EXIT_FAIL;
197 }
198
199 return 0;
200}

Callers

nothing calls this directly

Calls 1

testFunction · 0.70

Tested by

no test coverage detected