mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-08 19:11:53 +00:00
test/py: add various utility code
Add various common utility functions. These will be used by a forthcoming re-written UMS test, and a brand-new DFU test. Signed-off-by: Stephen Warren <swarren@nvidia.com> Acked-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
3f2faf7327
commit
76b4693928
2 changed files with 190 additions and 0 deletions
|
@ -215,6 +215,25 @@ class ConsoleBase(object):
|
|||
self.log.action('Sending Ctrl-C')
|
||||
self.run_command(chr(3), wait_for_echo=False, send_nl=False)
|
||||
|
||||
def wait_for(self, text):
|
||||
'''Wait for a pattern to be emitted by U-Boot.
|
||||
|
||||
This is useful when a long-running command such as "dfu" is executing,
|
||||
and it periodically emits some text that should show up at a specific
|
||||
location in the log file.
|
||||
|
||||
Args:
|
||||
text: The text to wait for; either a string (containing raw text,
|
||||
not a regular expression) or an re object.
|
||||
|
||||
Returns:
|
||||
Nothing.
|
||||
'''
|
||||
|
||||
if type(text) == type(''):
|
||||
text = re.escape(text)
|
||||
self.p.expect([text])
|
||||
|
||||
def drain_console(self):
|
||||
'''Read from and log the U-Boot console for a short time.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue