nixos/tests: implemented python test-driver version of dumpTTYContents

This commit is contained in:
Marijan 2019-11-06 22:40:02 +01:00
parent 2e52f98ddb
commit 01f79dfc9e

View file

@ -494,6 +494,11 @@ class Machine:
if ret.returncode != 0:
raise Exception("Cannot convert screenshot")
def dump_tty_contents(self, tty):
"""Debugging: Dump the contents of the TTY<n>
"""
self.execute("fold -w 80 /dev/vcs{} | systemd-cat".format(tty))
def get_screen_text(self):
if shutil.which("tesseract") is None:
raise Exception("get_screen_text used but enableOCR is false")