Changeset 94245 in vbox for trunk/src/VBox
- Timestamp:
- Mar 15, 2022 2:09:32 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/audio/tdAudioTest.py
r94244 r94245 80 80 'C:\\Apps\\vkat${EXESUFF}', 81 81 'C:\\Apps\\VBoxAudioTest${EXESUFF}', 82 ## @ odo VBoxAudioTest on Guest Additions?82 ## @todo VBoxAudioTest on Guest Additions? 83 83 ]; 84 84 self.asTestsDef = [ … … 321 321 # For Python 3.x we provide "real-time" output. 322 322 if sys.version_info[0] >= 3: 323 while oProcess.stdout.readable(): 323 while oProcess.stdout.readable(): # pylint: disable=no-member 324 324 sStdOut = oProcess.stdout.readline(); 325 325 if sStdOut: … … 388 388 if not oThread.is_alive(): 389 389 break; 390 self. wait(1);390 self.processEvents(0); 391 391 reporter.log2('Thread returned exit code for "%s": %d' % (sWhat, self.iThreadHstProcRc)); 392 392 except:
Note:
See TracChangeset
for help on using the changeset viewer.