Changeset 105888 in vbox for trunk/src/VBox
- Timestamp:
- Aug 28, 2024 12:29:40 PM (3 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/additions/tdAddGuestCtrl.py
r104706 r105888 1730 1730 fEnableVerboseLogging = False; 1731 1731 1732 # On Windows guests we always can enable verbose logging. NT4 and W2K doesn't have reg.exe nor (at least NT4) sc.exe. 1733 if oTestVm.isWindows() and oTestVm.sKind not in ('WindowsNT4', 'Windows2000',): 1732 # On Windows and Linux guests we always can enable verbose logging. 1733 # NT4 and W2K doesn't have reg.exe nor (at least NT4) sc.exe. 1734 if (oTestVm.isWindows() and oTestVm.sKind not in ('WindowsNT4', 'Windows2000',)) \ 1735 or oTestVm.isLinux(): 1734 1736 fEnableVerboseLogging = True; 1735 1737
Note:
See TracChangeset
for help on using the changeset viewer.