mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-04 10:43:35 +00:00
test: Release board after tests complete
When a board is finished with, the lab may want to power it off, or perform some other function. Add a new script which is called when tests are complete. Reviewed-by: Tom Rini <trini@konsulko.com> Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
8344038a93
commit
530c694c45
1 changed files with 10 additions and 0 deletions
|
@ -70,3 +70,13 @@ class ConsoleExecAttach(ConsoleBase):
|
||||||
raise
|
raise
|
||||||
|
|
||||||
return s
|
return s
|
||||||
|
|
||||||
|
def close(self):
|
||||||
|
super().close()
|
||||||
|
|
||||||
|
self.log.action('Releasing board')
|
||||||
|
args = [self.config.board_type, self.config.board_identity]
|
||||||
|
cmd = ['u-boot-test-release'] + args
|
||||||
|
runner = self.log.get_runner(cmd[0], sys.stdout)
|
||||||
|
runner.run(cmd)
|
||||||
|
runner.close()
|
||||||
|
|
Loading…
Add table
Reference in a new issue