Changeset 98596 in vbox for trunk/src/VBox/ValidationKit/tests/additions
- Timestamp:
- Feb 15, 2023 10:58:00 PM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 155882
- Location:
- trunk/src/VBox/ValidationKit/tests/additions
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/additions/tdAddBasic1.py
r98592 r98596 340 340 """ Sets a system-wide environment variable on the guest. Only supports Windows guests so far. """ 341 341 _ = oSession; 342 if oTestVm.sKind not in ('WindowsNT4', ):342 if oTestVm.sKind not in ('WindowsNT4', 'Windows2000',): 343 343 sPathRegExe = oTestVm.pathJoin(self.getGuestSystemDir(oTestVm), 'reg.exe'); 344 344 self.txsRunTest(oTxsSession, ('Set env var \"%s\"' % (sName,)), … … 398 398 ## @todo !!! HACK ALERT !!! Add the value directly into the testing source image. Later. 399 399 fHaveSetupApiDevLog = False; 400 if oTestVm.sKind not in ('WindowsNT4', ):400 if oTestVm.sKind not in ('WindowsNT4', 'Windows2000',): 401 401 sRegExe = oTestVm.pathJoin(self.getGuestSystemDir(oTestVm), 'reg.exe'); 402 402 fHaveSetupApiDevLog = self.txsRunTest(oTxsSession, 'Enabling setupapi.dev.log', 30 * 1000, -
trunk/src/VBox/ValidationKit/tests/additions/tdAddGuestCtrl.py
r98270 r98596 1711 1711 1712 1712 fRestartVBoxService = False; 1713 if oTestVm.isWindows() :1713 if oTestVm.isWindows() and oTestVm.sKind not in ('WindowsNT4', 'Windows2000',): 1714 1714 sPathRegExe = oTestVm.pathJoin(self.oTstDrv.getGuestSystemDir(oTestVm), 'reg.exe'); 1715 1715 sImagePath = '%s -vvvv --logfile %s' % (self.sPathVBoxServiceExeGst, sPathLogFile); -
trunk/src/VBox/ValidationKit/tests/additions/tdAddSharedFolders1.py
r98103 r98596 201 201 202 202 # 203 # Skip the test if before 6.0 203 # Skip the test if before 6.0 or if the VM is NT4 or older. 204 204 # 205 205 if self.oTstDrv.fpApiVer < 6.0: 206 206 reporter.log('Requires 6.0 or later (for now)'); 207 return (None, oTxsSession); 208 if oTestVm.isWindows() and oTestVm.sKind in ('WindowsNT3x', 'WindowsNT4', 'Windows2000',): 209 reporter.log('No shared folders on %s' % (oTestVm.sKind,)); 207 210 return (None, oTxsSession); 208 211
Note:
See TracChangeset
for help on using the changeset viewer.