You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This was because the test checked dmesg output on exit and found a message like this:
[ 459.424792] i6300esb: Unexpected close, not stopping watchdog!
The message was not an error. It was just a user-friendly reminder that closing /dev/watchdog didn't stop it (user should do "echo V >/dev/watchdog" instead).
To avoid the message (and hence the false ERROR result), the test needs to keep the file open before it checks dmesg. I think something like the following should do the trick:
# sh -c "echo 0; sleep 360" > /dev/watchdog &
The text was updated successfully, but these errors were encountered:
This was because the test checked dmesg output on exit and found a message like this:
The message was not an error. It was just a user-friendly reminder that closing /dev/watchdog didn't stop it (user should do "echo V >/dev/watchdog" instead).
To avoid the message (and hence the false ERROR result), the test needs to keep the file open before it checks dmesg. I think something like the following should do the trick:
The text was updated successfully, but these errors were encountered: