Home | History | Annotate | Download | only in tests

Lines Matching full:session

16     If the guest SSH session hangs, the test detects the hang and the guest
24 def outb(session, port, data):
28 @param session: SSH session stablished to a VM
37 session.cmd(outb_cmd)
42 def inb(session, port):
46 @param session: SSH session stablished to a VM
52 session.cmd(inb_cmd)
57 def fuzz(session, inst_list):
61 If the guest SSH session hangs, an attempt to relogin will be made.
71 inb(session, operand[0])
73 outb(session, operand[0], operand[1])
77 if not session.is_responsive():
78 logging.debug("Session is not responsive")
82 session = vm.wait_for_login(timeout=10)
85 session = vm.reboot(method="system_reset")
94 session = vm.wait_for_login(timeout=login_timeout)
101 ioports = session.cmd_output("cat /proc/ioports")
133 fuzz(session, inst)
136 session.close()