diff --git a/dlls/kernel32/tests/debugger.c b/dlls/kernel32/tests/debugger.c index ac5f2ce..2c4ebbc 100644 --- a/dlls/kernel32/tests/debugger.c +++ b/dlls/kernel32/tests/debugger.c @@ -241,7 +241,9 @@ static void crash_and_debug(HKEY hkey, const char* argv0, const char* dbgtasks) "wrong exit code : %08x\n", exit_code); } else - ok(exit_code == STATUS_ACCESS_VIOLATION, "exit code = %08x instead of STATUS_ACCESS_VIOLATION\n", exit_code); + ok(exit_code == STATUS_ACCESS_VIOLATION || + exit_code == STATUS_ABANDONED, /* win2k3 */ + "exit code = %08x instead of STATUS_ACCESS_VIOLATION or STATUS_ABANDONED\n", exit_code); CloseHandle(info.hProcess); /* ...before the debugger */ -- 1.5.4.3