Changeset 91429 in vbox for trunk/src/VBox
- Timestamp:
- Sep 28, 2021 11:17:38 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/utils/audio/vkat.cpp
r91413 r91429 601 601 { 602 602 /** @todo Fudge! */ 603 RTTestPrintf(g_hTest, RTTESTLVL_ALWAYS, "Waiting a bit to let guest and the audio stack process remaining data ...\n"); 604 RTThreadSleep(RT_MS_30SEC); 603 RTMSINTERVAL const msWait = RTRandU32Ex(RT_MS_5SEC, RT_MS_30SEC); 604 RTTestPrintf(g_hTest, RTTESTLVL_ALWAYS, 605 "Waiting %RU32ms to let guest and the audio stack process remaining data ...\n", msWait); 606 RTThreadSleep(msWait); 605 607 } 606 608
Note:
See TracChangeset
for help on using the changeset viewer.