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

Function main

test/recvsend_bundle.c:731–757  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

729}
730
731int main(int argc, char *argv[])
732{
733 int ret;
734
735 if (argc > 1)
736 return T_EXIT_SKIP;
737
738 ret = test_tcp();
739 if (ret != T_EXIT_PASS)
740 return ret;
741
742 ret = test_udp();
743 if (ret != T_EXIT_PASS)
744 return ret;
745
746 classic_buffers = 1;
747
748 ret = test_tcp();
749 if (ret != T_EXIT_PASS)
750 return ret;
751
752 ret = test_udp();
753 if (ret != T_EXIT_PASS)
754 return ret;
755
756 return T_EXIT_PASS;
757}

Callers

nothing calls this directly

Calls 2

test_udpFunction · 0.85
test_tcpFunction · 0.70

Tested by

no test coverage detected