[U-Boot] [PATCH V2 4/8] test/py: log when tests send CTRL-C

Stephen Warren swarren at wwwdotorg.org
Fri Jan 22 20:30:10 CET 2016


From: Stephen Warren <swarren at nvidia.com>

Write a note to the log file when a test sends CTRL-C to U-Boot. This
makes it easier to follow what's happening in the logs, especially since
U-Boot doesn't echo the character back to its output, so there's no other
signal of what's going on.

Signed-off-by: Stephen Warren <swarren at nvidia.com>
Acked-by: Simon Glass <sjg at chromium.org>
---
 test/py/u_boot_console_base.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/test/py/u_boot_console_base.py b/test/py/u_boot_console_base.py
index 418a26bb8e40..433bec6e9fdd 100644
--- a/test/py/u_boot_console_base.py
+++ b/test/py/u_boot_console_base.py
@@ -212,6 +212,7 @@ class ConsoleBase(object):
             Nothing.
         '''
 
+        self.log.action('Sending Ctrl-C')
         self.run_command(chr(3), wait_for_echo=False, send_nl=False)
 
     def drain_console(self):
-- 
2.7.0



More information about the U-Boot mailing list