VirtualBox

Changeset 60885 in vbox for trunk


Ignore:
Timestamp:
May 9, 2016 9:16:02 AM (9 years ago)
Author:
vboxsync
Message:

ValidationKit/tdUsb1: Disable a few tests for super speed as they fail currently, need investigation (looks like a bug on the USB/IP gadget side)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/ValidationKit/tests/usb/tdUsb1.py

    r60857 r60885  
    7777        'EHCI': ['High'],
    7878        '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]
    7987    };
    8088
     
    332340                    tupCmdLine = ('UsbTest', );
    333341                    # 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));
    336345
    337346                    fRc = self.txsRunTest(oTxsSession, 'UsbTest', 3600 * 1000, \
     
    339348                    if not fRc:
    340349                        reporter.testFailure('Running USB test utility failed');
    341 
    342350                else:
    343351                    reporter.testFailure('Failed to impersonate test device');
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette