Changeset 89113 in vbox for trunk/src/VBox/ValidationKit
- Timestamp:
- May 17, 2021 4:39:12 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 144454
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/audio/tdAudioTest.py
r89112 r89113 4 4 """ 5 5 AudioTest test driver which invokes the AudioTest (VKAT) binary to 6 perform the actual audio tests. 6 perform the actual audio tests. 7 7 8 8 The generated test set archive on the guest will be downloaded by TXS … … 50 50 # pylint: disable=unnecessary-semicolon 51 51 52 class tdAudioTest(vbox.TestDriver): 52 class tdAudioTest(vbox.TestDriver): 53 53 54 54 def __init__(self): … … 83 83 if not fSkip: 84 84 reporter.testStart('Waiting for TXS'); 85 sPathAutoTestExe = '${CDROM}/vboxvalidationkit/${OS/ARCH}/AudioTest${EXESUFF}'; 85 sPathAutoTestExe = '${CDROM}/vboxvalidationkit/${OS/ARCH}/AudioTest${EXESUFF}'; 86 86 oSession, oTxsSession = self.startVmAndConnectToTxsViaTcp(oTestVm.sVmName, 87 87 fCdWait = True, … … 91 91 if oSession is not None and oTxsSession is not None: 92 92 self.addTask(oTxsSession); 93 93 94 94 sPathTemp = self.getGuestTempDir(oTestVm); 95 95 sPathAudioOut = oTestVm.pathJoin(sPathTemp, 'vkat-out'); 96 sPathAudioTemp = oTestVm.pathJoin(sPathTemp, 'vkat-temp'); 96 sPathAudioTemp = oTestVm.pathJoin(sPathTemp, 'vkat-temp'); 97 97 reporter.log("Audio test temp path is '%s'" % (sPathAudioOut)); 98 reporter.log("Audio test output path is '%s'" % (sPathAudioTemp)); 98 reporter.log("Audio test output path is '%s'" % (sPathAudioTemp)); 99 99 sTag = uuid.uuid4(); 100 100 reporter.log("Audio test tag is %s'" % (sTag)); … … 106 106 sPathAutoTestExe, '-vvv', 'test', '--tag ' + sTag, 107 107 '--tempdir ' + sPathAudioTemp, '--outdir ' + sPathAudioOut)); 108 reporter.testDone() 109 108 reporter.testDone() 109 110 110 if fRc: 111 111 sFileAudioTestArchive = oTestVm.pathJoin(sPathTemp, 'vkat-%s.tar.gz' % (sTag)); … … 122 122 return fRc; 123 123 124 reporter.log('Audio testing skipped, not implemented/available for that OS yet.'); 124 reporter.log('Audio testing skipped, not implemented/available for that OS yet.'); 125 125 return True; 126 126
Note:
See TracChangeset
for help on using the changeset viewer.