- Timestamp:
- May 9, 2016 9:16:02 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/usb/tdUsb1.py
r60857 r60885 77 77 'EHCI': ['High'], 78 78 'XHCI': ['Low', 'Full', 'High', 'Super'] 79 }; 80 81 # Tests currently disabled because they fail, need investigation. 82 kdUsbTestsDisabled = { 83 'Low': [], 84 'Full': [], 85 'High': [], 86 'Super': [4, 6, 10, 11, 18, 20, 24] 79 87 }; 80 88 … … 332 340 tupCmdLine = ('UsbTest', ); 333 341 # Exclude a few tests which hang and cause a timeout, need investigation. 334 if sUsbCtrl is 'XHCI': 335 tupCmdLine = tupCmdLine + ('--exclude', '10', '--exclude', '24'); 342 lstTestsExclude = self.kdUsbTestsDisabled.get(sSpeed); 343 for iTestExclude in lstTestsExclude: 344 tupCmdLine = tupCmdLine + ('--exclude', str(iTestExclude)); 336 345 337 346 fRc = self.txsRunTest(oTxsSession, 'UsbTest', 3600 * 1000, \ … … 339 348 if not fRc: 340 349 reporter.testFailure('Running USB test utility failed'); 341 342 350 else: 343 351 reporter.testFailure('Failed to impersonate test device');
Note:
See TracChangeset
for help on using the changeset viewer.