Changeset 90668 in vbox for trunk/src/VBox/ValidationKit/tests
- Timestamp:
- Aug 12, 2021 5:27:22 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 146280
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/audio/tdAudioTest.py
r90666 r90668 241 241 if sOsType == 'vista': # pylint: disable=no-else-return 242 242 # Vista and up. 243 return (['netsh ', 'advfirewall', 'set', 'allprofiles', 'state', 'off']);243 return (['netsh.exe', 'advfirewall', 'set', 'allprofiles', 'state', 'off']); 244 244 elif sOsType == 'xp': # Older stuff (XP / 2003). 245 return(['netsh ', 'firewall', 'set', 'opmode', 'mode=DISABLE']);245 return(['netsh.exe', 'firewall', 'set', 'opmode', 'mode=DISABLE']); 246 246 # Not supported / available. 247 247 return []; … … 457 457 458 458 # Disable any OS-specific firewalls preventing VKAT / ATS to run. 459 self.disableHstFirewall(); 460 self.disableGstFirewall(oTestVm, oTxsSession); 459 fRc = self.disableHstFirewall(); 460 fRc = self.disableGstFirewall(oTestVm, oTxsSession) and fRc; 461 462 if not fRc: 463 return False; 461 464 462 465 # First try to kill any old VKAT / VBoxAudioTest processes lurking around on the host.
Note:
See TracChangeset
for help on using the changeset viewer.