diff options
| author | Tom Rini <[email protected]> | 2026-01-08 10:28:15 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2026-01-08 10:28:15 -0600 |
| commit | c05dba22f1f2b0b2655ee3971644acf1936cd07a (patch) | |
| tree | 93208cf4114c91dcba9f7a93ec66d706bb84f920 /test | |
| parent | ed4ec707e066e689a9a332c3124bf088b1e31cf6 (diff) | |
| parent | 14d9e84fc54b008ab1ad667bef73578b443dda73 (diff) | |
Merge branch 'master' of git://source.denx.de/u-boot-usb
- DWC3 for exynos7870
- Avoid a noisy message on xhci controllers
Diffstat (limited to 'test')
| -rw-r--r-- | test/py/tests/test_usb.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/py/tests/test_usb.py b/test/py/tests/test_usb.py index 1dcd0834f55..9226d1c174d 100644 --- a/test/py/tests/test_usb.py +++ b/test/py/tests/test_usb.py @@ -58,7 +58,7 @@ def test_usb_start(ubman): assert 'USB init failed' not in output assert 'starting USB...' in output - if 'Starting the controller' in output: + if ubman.config.buildconfig.get('config_usb_xhci_hcd'): assert 'USB XHCI' in output output = ubman.run_command('echo $?') @@ -104,7 +104,7 @@ def test_usb_reset(ubman): assert 'USB init failed' not in output assert 'resetting USB...' in output - if 'Starting the controller' in output: + if ubman.config.buildconfig.get('config_usb_xhci_hcd'): assert 'USB XHCI' in output output = ubman.run_command('echo $?') |
