Changeset 91190 in vbox for trunk/src/VBox/ValidationKit/utils
- Timestamp:
- Sep 10, 2021 6:32:14 AM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 146845
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/utils/audio/vkat.cpp
r91189 r91190 314 314 * 1. Arm the (host) ValKit ATS with the recording parameters. 315 315 */ 316 RTTestPrintf(g_hTest, RTTESTLVL_ DEBUG, "Telling ValKit audio driver on host to record new tone ...\n");316 RTTestPrintf(g_hTest, RTTESTLVL_ALWAYS, "Telling ValKit audio driver on host to record new tone ...\n"); 317 317 rc = AudioTestSvcClientToneRecord(&pTstEnv->u.Host.AtsClValKit, pToneParms); 318 318 if (RT_SUCCESS(rc)) … … 324 324 * 2. Tell VKAT on guest to start playback. 325 325 */ 326 RTTestPrintf(g_hTest, RTTESTLVL_ DEBUG, "Telling VKAT on guest to play tone ...\n");326 RTTestPrintf(g_hTest, RTTESTLVL_ALWAYS, "Telling VKAT on guest to play tone ...\n"); 327 327 rc = AudioTestSvcClientTonePlay(&pTstEnv->u.Host.AtsClGuest, pToneParms); 328 328 if (RT_FAILURE(rc)) … … 336 336 if (RT_SUCCESS(rc)) 337 337 { 338 RTTestPrintf(g_hTest, RTTESTLVL_ DEBUG, "Playing tone done\n");338 RTTestPrintf(g_hTest, RTTESTLVL_ALWAYS, "Playing tone done\n"); 339 339 340 340 /* Give the audio stack a random amount of time for draining data before the next iteration. */ … … 425 425 * 1. Arm the (host) ValKit ATS with the playback parameters. 426 426 */ 427 RTTestPrintf(g_hTest, RTTESTLVL_ DEBUG, "Telling ValKit audio driver on host to inject recording data ...\n");427 RTTestPrintf(g_hTest, RTTESTLVL_ALWAYS, "Telling ValKit audio driver on host to inject recording data ...\n"); 428 428 rc = AudioTestSvcClientTonePlay(&pTstEnv->u.Host.AtsClValKit, &pTstParms->TestTone); 429 429 if (RT_SUCCESS(rc)) … … 432 432 * 2. Tell the guest ATS to start recording. 433 433 */ 434 RTTestPrintf(g_hTest, RTTESTLVL_ DEBUG, "Telling VKAT on guest to record audio ...\n");434 RTTestPrintf(g_hTest, RTTESTLVL_ALWAYS, "Telling VKAT on guest to record audio ...\n"); 435 435 rc = AudioTestSvcClientToneRecord(&pTstEnv->u.Host.AtsClGuest, &pTstParms->TestTone); 436 436 if (RT_FAILURE(rc))
Note:
See TracChangeset
for help on using the changeset viewer.