VirtualBox

Changeset 90753 in vbox for trunk


Ignore:
Timestamp:
Aug 19, 2021 3:57:15 PM (3 years ago)
Author:
vboxsync
Message:

Audio/ValKit: tdAudioTest.py: Log stuff in killHstProcessByName() to find out what's going on. bugref:10008

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/ValidationKit/tests/audio/tdAudioTest.py

    r90746 r90753  
    279279            # Using the BSD syntax here; MacOS also should understand this.
    280280            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:');
    282286            for sLine in out.decode("utf-8").splitlines():
     287                reporter.log2(sLine);
    283288                if sProcName in sLine:
    284289                    pid = int(sLine.split(None, 1)[0]);
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette