- Timestamp:
- Aug 19, 2021 3:57:15 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/audio/tdAudioTest.py
r90746 r90753 279 279 # Using the BSD syntax here; MacOS also should understand this. 280 280 procPs = subprocess.Popen(['ps', 'ax'], stdout=subprocess.PIPE); 281 out, _ = procPs.communicate(); 281 out, err = procPs.communicate(); 282 reporter.log2('PS stderr:'); 283 for sLine in err.decode("utf-8").splitlines(): 284 reporter.log2(sLine); 285 reporter.log2('PS stdout:'); 282 286 for sLine in out.decode("utf-8").splitlines(): 287 reporter.log2(sLine); 283 288 if sProcName in sLine: 284 289 pid = int(sLine.split(None, 1)[0]);
Note:
See TracChangeset
for help on using the changeset viewer.