Changeset 91585 in vbox for trunk/src/VBox/ValidationKit/tests/audio/tdAudioTest.py
- Timestamp:
- Oct 6, 2021 8:40:09 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/audio/tdAudioTest.py
r91575 r91585 696 696 fSkip = True; 697 697 698 sVkatExe = self.getBinTool('vkat');699 asArgs = [ sVkatExe, 'enum', '--probe-backends' ];700 fRc = self.executeHst("VKAT Host Audio Probing", asArgs);701 if not fSkip \702 andnot fRc:703 reporter.log('Audio not available on host, skipping audio tests.');704 fSkip = True;698 if not fSkip: 699 sVkatExe = self.getBinTool('vkat'); 700 asArgs = [ sVkatExe, 'enum', '--probe-backends' ]; 701 fRc = self.executeHst("VKAT Host Audio Probing", asArgs); 702 if not fRc: 703 # Not fatal, as VBox then should fall back to the NULL audio backend (also worth having as a test case). 704 reporter.log('Warning: Backend probing on host failed, no audio available (pure server installation?)'); 705 705 706 706 if fSkip:
Note:
See TracChangeset
for help on using the changeset viewer.