On 11/4/24 13:19, Cédric Le Goater wrote:
On 11/4/24 13:12, Thomas Huth wrote:
On 28/10/2024 18.14, Peter Maydell wrote:
Trying a "make check-functional" I find that the func-arm-arm_aspeed
test seems to hit a timeout:
18/18 qemu:func-thorough+func-arm-thorough+thorough /
func-arm-arm_aspeed TIMEOUT 600.08s killed by
signal 15 SIGTERM
This is with commit cea8ac78545a.
Cédric, is it working reliable for you?
I have never seen this issue on the systems I use. Let me try again.
On a (slow) ARM SBC, I am seeing a timeout indeed.
The log file contains :
2024-11-04 13:59:01,219: Starting dropbear sshd: OK
2024-11-04 13:59:01,628: Aspeed AST2600 EVB
2024-11-04 13:59:01,829: ast2600-evb login: root
2024-11-04 13:59:01,847: passw0rd
2024-11-04 13:59:01,850: echo lm75 0x4d >
/sys/class/i2c-dev/i2c-3/device/new_device
2024-11-04 14:00:13,916: Password:
2024-11-04 14:00:13,917: Login timed out after 60 seconds
2024-11-04 14:00:15,418: Aspeed AST2600 EVB
This means that the sleep workaround failed :/
# the line before login:
self.wait_for_console_pattern(pattern)
time.sleep(0.1)
exec_command(self, 'root')
time.sleep(0.1)
exec_command(self, "passw0rd")
C.