diff mbox series

[U-Boot] tests: Make test_log.py tests depend on cmd_log not log

Message ID 1527251325-30287-1-git-send-email-trini@konsulko.com
State Accepted
Commit 680a52c35088dc30a4ca18870ec89ff3e1ac0e52
Delegated to: Tom Rini
Headers show
Series [U-Boot] tests: Make test_log.py tests depend on cmd_log not log | expand

Commit Message

Tom Rini May 25, 2018, 12:28 p.m. UTC
While the tests in this testcase are for the log subsystem they are only
able to be run if CONFIG_CMD_LOG is enabled as well as CONFIG_LOG, so
update the buildconfigspec requirement.

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

Comments

Tom Rini May 31, 2018, 6:16 p.m. UTC | #1
On Fri, May 25, 2018 at 08:28:45AM -0400, Tom Rini wrote:

> While the tests in this testcase are for the log subsystem they are only
> able to be run if CONFIG_CMD_LOG is enabled as well as CONFIG_LOG, so
> update the buildconfigspec requirement.
> 
> Signed-off-by: Tom Rini <trini@konsulko.com>

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

Patch

diff --git a/test/py/tests/test_log.py b/test/py/tests/test_log.py
index d1c2a36d8f25..605275b03992 100644
--- a/test/py/tests/test_log.py
+++ b/test/py/tests/test_log.py
@@ -12,7 +12,7 @@  import pytest
 
 LOGL_FIRST, LOGL_WARNING, LOGL_INFO = (0, 4, 6)
 
-@pytest.mark.buildconfigspec('log')
+@pytest.mark.buildconfigspec('cmd_log')
 def test_log(u_boot_console):
     """Test that U-Boot logging works correctly."""
     def check_log_entries(lines, mask, max_level=LOGL_INFO):
@@ -98,7 +98,7 @@  def test_log(u_boot_console):
     test8()
     test9()
 
-@pytest.mark.buildconfigspec('log')
+@pytest.mark.buildconfigspec('cmd_log')
 def test_log_format(u_boot_console):
     """Test the 'log format' and 'log rec' commands"""
     def run_with_format(fmt, expected_output):