- Timestamp:
- Jul 22, 2019 10:11:05 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testmanager/batch/virtual_test_sheriff.py
r79092 r79918 158 158 return self.isVBoxTest() \ 159 159 and self.oTestCase.sName.lower().startswith('install:'); 160 161 def isVBoxUnattendedInstallTest(self): 162 """ Test case classification: VirtualBox Guest installation test. """ 163 return self.isVBoxTest() \ 164 and self.oTestCase.sName.lower().startswith('uinstall:'); 160 165 161 166 def isVBoxUSBTest(self): … … 1488 1493 fRc = self.investigateVBoxUnitTest(oCaseFile); 1489 1494 1490 elif oCaseFile.isVBoxInstallTest() :1495 elif oCaseFile.isVBoxInstallTest() or oCaseFile.isVBoxUnattendedInstallTest(): 1491 1496 self.dprint(u'investigateVBoxVMTest is taking over %s.' % (oCaseFile.sLongName,)); 1492 1497 fRc = self.investigateVBoxVMTest(oCaseFile, fSingleVM = True);
Note:
See TracChangeset
for help on using the changeset viewer.