From: Michele Dionisio michele.dionisio@powersoft.com
it seams that on linux32 exit stop with CRTL-C to works as expected under wine. --- programs/timeout/tests/timeout.c | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/programs/timeout/tests/timeout.c b/programs/timeout/tests/timeout.c index b0ddaf07e57..bd99eb9e5e1 100644 --- a/programs/timeout/tests/timeout.c +++ b/programs/timeout/tests/timeout.c @@ -124,6 +124,8 @@ static void _run_timeout_ctrlc(const char *file, int line, const char *option, D
CloseHandle(process_info.hProcess); CloseHandle(process_info.hThread); + + flaky_wine_if(exitcode_expected == STATUS_CONTROL_C_EXIT) ok_(file, line)(exitcode == exitcode_expected, "Expected exitcode %ld, got %lx\n", exitcode_expected, exitcode); }