Changeset 90130 in vbox for trunk/src/VBox/ValidationKit/tests
- Timestamp:
- Jul 9, 2021 2:37:48 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 145632
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/audio/tdAudioTest.py
r90129 r90130 155 155 return fRc; 156 156 157 def _locateGstVkat(self, oSession, oTxsSession):157 def locateGstVkat(self, oSession, oTxsSession): 158 158 """ 159 159 Returns guest side path to VKAT. … … 182 182 self.killProcessByName("VBoxAudioTest"); 183 183 184 def _getVkatResult(self, oTxsSession):185 """ 186 Extracts the VKAT exit codefrom a run before.184 def getLastRcFromTxs(self, oTxsSession): 185 """ 186 Extracts the last exit code reported by TXS from a run before. 187 187 Assumes that nothing else has been run on the same TXS session in the meantime. 188 188 """ … … 204 204 reporter.log('Guest audio test output path is \"%s\"' % (sPathAudioTemp)); 205 205 206 fRc, sVkatExe = self. _locateGstVkat(oSession, oTxsSession);206 fRc, sVkatExe = self.locateGstVkat(oSession, oTxsSession); 207 207 if fRc: 208 208 reporter.log('Using VKAT on guest at \"%s\"' % (sVkatExe)); … … 219 219 sVkatExe, aArgs); 220 220 if not fRc: 221 reporter.error('VKAT on guest returned exit code error %d' % (self. _getVkatResult(oTxsSession)));221 reporter.error('VKAT on guest returned exit code error %d' % (self.getLastRcFromTxs(oTxsSession))); 222 222 else: 223 223 reporter.error('VKAT on guest not found');
Note:
See TracChangeset
for help on using the changeset viewer.