Changeset 91426 in vbox for trunk/src/VBox/ValidationKit/tests/audio
- Timestamp:
- Sep 28, 2021 8:28:54 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/audio/tdAudioTest.py
r91415 r91426 39 39 import signal 40 40 import subprocess 41 import time 41 42 42 43 # Only the main script needs to modify the path. … … 279 280 for line in iter(oProcess.stdout.readline, b''): 280 281 reporter.log('[' + sWhat + '] ' + line.decode('utf-8')); 282 self.processPendingEvents(); 283 time.sleep(0.01); # Don't hog the CPU too much. 281 284 oProcess.communicate(); 282 285 if oProcess.returncode == 0:
Note:
See TracChangeset
for help on using the changeset viewer.