Re: [PATCH] added debugregisters testcase

2006-10-03 Thread Dmitry Timoshkov
"Marcus Meissner" <[EMAIL PROTECTED]> wrote: exception.c:281: Test failed: failed to set debugregister 7 to 0x155, got 555 Interesting, it apparently changed the 0x155 from my code to 0x555, turning a single byte watch into a 2 byte watch. Or perhaps it did not use my code, but had something s

Re: [PATCH] added debugregisters testcase

2006-10-03 Thread Dmitry Timoshkov
"Marcus Meissner" <[EMAIL PROTECTED]> wrote: +ctx.ContextFlags = CONTEXT_DEBUG_REGISTERS; +res = pNtGetContextThread(GetCurrentThread(), &ctx); +ok (res == STATUS_SUCCESS,"NtGetContextThread failed with %lx", res); +ok(ctx.Dr7 == 0x155,"failed to set debugregister 7 to 0x155");