| 1439 | static const int RPC_NUM = 1024; |
| 1440 | |
| 1441 | void DumpRdmaEndpointInfo(Socket* client, Socket* server) { |
| 1442 | std::cout << std::endl << "client:"; |
| 1443 | client->_rdma_ep->DebugInfo(std::cout); |
| 1444 | std::cout << std::endl << "server:"; |
| 1445 | server->_rdma_ep->DebugInfo(std::cout); |
| 1446 | } |
| 1447 | |
| 1448 | TEST_F(RdmaTest, send_rpcs_in_one_qp) { |
| 1449 | if (!FLAGS_rdma_test_enable) { |