- Timestamp:
- Feb 10, 2015 11:03:11 AM (10 years ago)
- Location:
- trunk/src/VBox/ValidationKit
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testdriver/vboxwrappers.py
r54118 r54122 1069 1069 try: 1070 1070 if fEnable: 1071 1072 1073 1071 cXhciCtls = self.o.machine.getUSBControllerCountByType(vboxcon.USBControllerType_XHCI); 1072 if cXhciCtls == 0: 1073 self.o.machine.addUSBController('XHCI', vboxcon.USBControllerType_XHCI); 1074 1074 else: 1075 1075 cXhciCtls = self.o.machine.getUSBControllerCountByType(vboxcon.USBControllerType_XHCI); -
trunk/src/VBox/ValidationKit/tests/usb/tdUsb1.py
r54118 r54122 251 251 return kdGadgetsConfigured.get(sSpeed); 252 252 253 return None;253 return (None, None); 254 254 255 255 # 256 256 # Test execution helpers. 257 257 # 258 def testUsbCompliance(self, oSession, oTxsSession, s VmName, sSpeed):258 def testUsbCompliance(self, oSession, oTxsSession, sSpeed): 259 259 """ 260 260 Test VirtualBoxs USB stack in a VM. … … 332 332 self.sleep(5); 333 333 334 fRc = self.testUsbCompliance(oSession, oTxsSession, s VmName, sSpeed);334 fRc = self.testUsbCompliance(oSession, oTxsSession, sSpeed); 335 335 336 336 # cleanup.
Note:
See TracChangeset
for help on using the changeset viewer.