Changeset 90683 in vbox for trunk/src/VBox/ValidationKit/utils
- Timestamp:
- Aug 13, 2021 1:15:11 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 146295
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/utils/audio/vkatCommon.cpp
r90079 r90683 636 636 RT_NOREF(pTstEnv); 637 637 638 RTTestPrintf(g_hTest, RTTESTLVL_ALWAYS, "Connecting %s ...\n", pszWhat);639 640 638 RTGETOPTUNION Val; 641 639 RT_ZERO(Val); … … 659 657 AssertRCReturn(rc, rc); 660 658 659 RTTestPrintf(g_hTest, RTTESTLVL_ALWAYS, "Connecting %s (connection mode '%s') ...\n", pszWhat, Val.psz); 660 661 661 if ( !RTStrCmp(Val.psz, "client") 662 662 || !RTStrCmp(Val.psz, "both")) 663 RTTestPrintf(g_hTest, RTTESTLVL_ALWAYS, "Connecting at%s:%RU32\n", pszTcpConnectAddr, uTcpConnectPort);663 RTTestPrintf(g_hTest, RTTESTLVL_ALWAYS, "Connecting to %s:%RU32\n", pszTcpConnectAddr, uTcpConnectPort); 664 664 665 665 if ( !RTStrCmp(Val.psz, "server") … … 702 702 } 703 703 704 RTTestPrintf(g_hTest, RTTESTLVL_ALWAYS, " Connected %s\n", pszWhat);704 RTTestPrintf(g_hTest, RTTESTLVL_ALWAYS, "Successfully connected %s\n", pszWhat); 705 705 return rc; 706 706 }
Note:
See TracChangeset
for help on using the changeset viewer.