On Mon Nov 25 17:13:42 2024 +0000, eric pouech wrote:
wine ../tests/x86_64-windows/timeout.exe_test.exe </dev/null
why are running the tests redirecting the input stream ? the VerifyConsoleIoHandle checks the input handle is a console handle, in your case it's a handle on a file (/dev/null on Unix) and hence the call with always fail
I remove the check as you request. but in my opinion now the test fails on linux and windows too