diff mbox

[U-Boot] test/py/tests/test_sleep.py: Add check for CONFIG_CMD_MISC

Message ID 1476486781-20699-1-git-send-email-trini@konsulko.com
State Accepted
Commit 2b2c6e51e7d69f715a1501702fe33589afe6190d
Delegated to: Tom Rini
Headers show

Commit Message

Tom Rini Oct. 14, 2016, 11:13 p.m. UTC
We can only run this command if the sleep command is enabled and that
depends on CONFIG_CMD_MISC

Signed-off-by: Tom Rini <trini@konsulko.com>
---
 test/py/tests/test_sleep.py | 2 ++
 1 file changed, 2 insertions(+)

Comments

Tom Rini Oct. 15, 2016, 12:13 a.m. UTC | #1
On Fri, Oct 14, 2016 at 07:13:01PM -0400, Tom Rini wrote:

> We can only run this command if the sleep command is enabled and that
> depends on CONFIG_CMD_MISC
> 
> Signed-off-by: Tom Rini <trini@konsulko.com>

Applied to u-boot/master, thanks!
diff mbox

Patch

diff --git a/test/py/tests/test_sleep.py b/test/py/tests/test_sleep.py
index 5c1a2623fefa..b59a4cfc0fc2 100644
--- a/test/py/tests/test_sleep.py
+++ b/test/py/tests/test_sleep.py
@@ -9,6 +9,8 @@  def test_sleep(u_boot_console):
     """Test the sleep command, and validate that it sleeps for approximately
     the correct amount of time."""
 
+    if u_boot_console.config.buildconfig.get('config_cmd_misc', 'n') != 'y':
+        pytest.skip('sleep command not supported')
     # 3s isn't too long, but is enough to cross a few second boundaries.
     sleep_time = 3
     tstart = time.time()