- Timestamp:
- Aug 21, 2021 6:17:37 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/audio/tdAudioTest.py
r90754 r90772 230 230 if oProcess: 231 231 for line in iter(oProcess.stdout.readline, b''): 232 reporter.log('[' + sWhat + '] ' + line.decode( sys.stdin.encoding));232 reporter.log('[' + sWhat + '] ' + line.decode('utf-8')); 233 233 iExitCode = oProcess.poll(); 234 234 if iExitCode: … … 282 282 if err: 283 283 reporter.log2('PS stderr:'); 284 for sLine in err.decode( "utf-8").splitlines():284 for sLine in err.decode('utf-8').splitlines(): 285 285 reporter.log2(sLine); 286 286 if out: 287 287 reporter.log2('PS stdout:'); 288 for sLine in out.decode( "utf-8").splitlines():288 for sLine in out.decode('utf-8').splitlines(): 289 289 reporter.log2(sLine); 290 290 if sProcName in sLine:
Note:
See TracChangeset
for help on using the changeset viewer.

