From: Francois Gouget fgouget@codeweavers.com
Wine-Bug: https://bugs.winehq.org//show_bug.cgi?id=53143 --- dlls/kernel32/tests/debugger.c | 1 + 1 file changed, 1 insertion(+)
diff --git a/dlls/kernel32/tests/debugger.c b/dlls/kernel32/tests/debugger.c index 4e9fe88ede1..f038514506e 100644 --- a/dlls/kernel32/tests/debugger.c +++ b/dlls/kernel32/tests/debugger.c @@ -1757,6 +1757,7 @@ static void test_debugger(const char *argv0) ctx.ev.u.Exception.ExceptionRecord.ExceptionCode); ok(ctx.ev.u.Exception.ExceptionRecord.ExceptionAddress == thread_proc + 1, "ExceptionAddress = %p\n", ctx.ev.u.Exception.ExceptionRecord.ExceptionAddress); + flaky ok(get_ip(&prev_thread->ctx) == thread_proc + 2 || broken(get_ip(&prev_thread->ctx) == thread_proc), /* sometimes observed on win10 */ "unexpected instruction pointer %p\n", get_ip(&prev_thread->ctx));