summaryrefslogtreecommitdiff
path: root/test/py/tests/test_shell_basics.py
diff options
context:
space:
mode:
authorMichal Simek <michal.simek@xilinx.com>2017-05-15 12:29:02 (GMT)
committerTom Rini <trini@konsulko.com>2017-05-22 11:29:55 (GMT)
commit6b83c38d7a195f0e93cd6ff069a69105cb59a091 (patch)
tree8f6a7d5b1b9e8944c955567008e603f36432abed /test/py/tests/test_shell_basics.py
parent0680f1b1f7629c49d88d8981e164ab9bb0ad8d68 (diff)
downloadu-boot-fsl-qoriq-6b83c38d7a195f0e93cd6ff069a69105cb59a091.tar.xz
test: py: Add cmd_echo dependency
There is missing dependency on echo command. Mark tests which requires echo. Signed-off-by: Michal Simek <michal.simek@xilinx.com> Reviewed-by: Stephen Warren <swarren@nvidia.com>
Diffstat (limited to 'test/py/tests/test_shell_basics.py')
-rw-r--r--test/py/tests/test_shell_basics.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/py/tests/test_shell_basics.py b/test/py/tests/test_shell_basics.py
index 702e5e2..0024d5f 100644
--- a/test/py/tests/test_shell_basics.py
+++ b/test/py/tests/test_shell_basics.py
@@ -4,6 +4,10 @@
# Test basic shell functionality, such as commands separate by semi-colons.
+import pytest
+
+pytestmark = pytest.mark.buildconfigspec('cmd_echo')
+
def test_shell_execute(u_boot_console):
"""Test any shell command."""