Changeset 90655 in vbox for trunk/src/VBox/ValidationKit/tests
- Timestamp:
- Aug 12, 2021 10:54:12 AM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 146267
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/audio/tdAudioTest.py
r90653 r90655 239 239 If not supported, returns an empty array. 240 240 """ 241 if sOsType == 'vista': # Vista and up. 241 if sOsType == 'vista': # pylint: disable=no-else-return 242 # Vista and up. 242 243 return (['netsh', 'advfirewall', 'set', 'allprofiles', 'state', 'off']); 243 elif sOsType == 'xp': # pylint: disable=no-else-return 244 # Older stuff (XP / 2003). 244 elif sOsType == 'xp': # Older stuff (XP / 2003). 245 245 return(['netsh', 'firewall', 'set', 'opmode', 'mode=DISABLE']); 246 246 # Not supported / available.
Note:
See TracChangeset
for help on using the changeset viewer.