mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
test: Fix test_pinmux to run in parallel
At present test_pinmux_status() assumes that test_pinmux_dev() has run beforehand. Drop this assumption so we can run the tests in parallel. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
98b3a998b3
commit
2aa1188467
1 changed files with 1 additions and 0 deletions
|
@ -68,6 +68,7 @@ def test_pinmux_dev(u_boot_console):
|
|||
def test_pinmux_status(u_boot_console):
|
||||
"""Test that 'pinmux status' displays selected pincontroller's pin
|
||||
muxing descriptions."""
|
||||
u_boot_console.run_command('pinmux dev pinctrl')
|
||||
output = u_boot_console.run_command('pinmux status')
|
||||
|
||||
assert (not 'pinctrl-gpio:' in output)
|
||||
|
|
Loading…
Reference in a new issue