Changeset 57004 in vbox for trunk/src/VBox/ValidationKit/utils/network
- Timestamp:
- Jul 19, 2015 12:53:13 AM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 101719
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/utils/network/NetPerf.cpp
r56756 r57004 360 360 rc = RTTcpRead(hSocket, szBuf, sizeof(g_szAck) - 1, NULL); 361 361 if (RT_FAILURE(rc)) 362 return RTTestIFailedRc(rc, "stats: failed to write stats: %Rrc\n", szBuf,rc);362 return RTTestIFailedRc(rc, "stats: failed to write stats: %Rrc\n", rc); 363 363 szBuf[sizeof(g_szAck) - 1] = '\0'; 364 364 if (!strcmp(szBuf, g_szNegative)) 365 return RTTestIFailedRc(rc, "stats: client failed to parse them\n" , szBuf);365 return RTTestIFailedRc(rc, "stats: client failed to parse them\n"); 366 366 if (strcmp(szBuf, g_szAck)) 367 367 return RTTestIFailedRc(rc, "stats: got '%s' in instead of ack/nack\n", szBuf); … … 1723 1723 1724 1724 default: 1725 RTTestIFailed("Protocol not supported.\n" , g_pStdErr);1725 RTTestIFailed("Protocol not supported.\n"); 1726 1726 return RTEXITCODE_FAILURE; 1727 1727 }
Note:
See TracChangeset
for help on using the changeset viewer.