mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 01:51:00 +03:00
ZTS: deadman_sync fix
In the CI environment it's possible for events to be slightly delayed resulting in 4, instead of 5, events appearing in the log file. This isn't a problem and should be considered a success to avoid false positive test results. Reviewed-by: George Melikov <mail@gmelikov.ru> Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov> Closes #12625
This commit is contained in:
parent
a5b464263b
commit
72f06d01b5
@ -80,10 +80,10 @@ else
|
||||
fi
|
||||
log_must zpool events
|
||||
|
||||
# Verify at least 5 deadman events were logged. The first after 5 seconds,
|
||||
# Verify at least 4 deadman events were logged. The first after 5 seconds,
|
||||
# and another each second thereafter until the delay is clearer.
|
||||
events=$(zpool events | grep -c ereport.fs.zfs.deadman)
|
||||
if [ "$events" -lt 5 ]; then
|
||||
if [ "$events" -lt 4 ]; then
|
||||
log_fail "Expect >=5 deadman events, $events found"
|
||||
fi
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user