diff options
author | Simon Glass <sjg@chromium.org> | 2022-08-06 17:51:45 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-09-12 18:06:36 -0400 |
commit | 2aa11884678654a1bffc20c8ec11fa0fae163bb2 (patch) | |
tree | 63fa9202f1c0b59bcba5d3ea4d1b9ed46a6c2738 | |
parent | 98b3a998b31a83d8167f888b11ddd5cce8194f35 (diff) | |
download | u-boot-2aa11884678654a1bffc20c8ec11fa0fae163bb2.zip u-boot-2aa11884678654a1bffc20c8ec11fa0fae163bb2.tar.gz u-boot-2aa11884678654a1bffc20c8ec11fa0fae163bb2.tar.bz2 |
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>
-rw-r--r-- | test/py/tests/test_pinmux.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/py/tests/test_pinmux.py b/test/py/tests/test_pinmux.py index b3ae2ab..794994e 100644 --- a/test/py/tests/test_pinmux.py +++ b/test/py/tests/test_pinmux.py @@ -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) |