ports: fix assert in vmm_vm_stress

Issue #5432
This commit is contained in:
Alexander Boettcher 2025-03-17 11:08:02 +01:00 committed by Norman Feske
parent 60b3619a1b
commit 1c342e1bec

View File

@ -2,7 +2,7 @@
if {[have_cmd_switch --autopilot]} {
set current_date [clock format [clock seconds] -format %a]
assert {$current_date == "Sat" || $current_date == "Sun"} \
assert {$current_date == "Sat" || $current_date == "Sun"} {
"Autopilot mode is not supported on this platform today."
}
}