On Mon, 2006-10-30 at 23:44 -0800, James Hawkins wrote: > On 10/30/06, Paul Vriens <[EMAIL PROTECTED]> wrote: > > Hi, > > > > makes sure the other tests are run. > > > > Changelog > > Remove test that crashes on Win2k > > > > Cheers, > > > > Paul. > > > > --- > > dlls/secur32/tests/schannel.c | 2 ++ > > 1 files changed, 2 insertions(+), 0 deletions(-) > > > > diff --git a/dlls/secur32/tests/schannel.c b/dlls/secur32/tests/schannel.c > > index 23e2a0a..95669fe 100644 > > --- a/dlls/secur32/tests/schannel.c > > +++ b/dlls/secur32/tests/schannel.c > > @@ -140,10 +140,12 @@ static void testAcquireSecurityContext(v > > NULL); > > ok(st == SEC_E_SECPKG_NOT_FOUND, > > "Expected SEC_E_SECPKG_NOT_FOUND, got %08x\n", st); > > + /* Crashes on Win2K > > st = pAcquireCredentialsHandleA(NULL, unisp_name_a, 0, NULL, NULL, > > NULL, > > NULL, NULL, NULL); > > ok(st == SEC_E_NO_CREDENTIALS, "Expected SEC_E_NO_CREDENTIALS, got > > %08x\n", > > st); > > + */ > > Please use #if 0/#endif to comment out pieces of code. > Hi James,
there is a commented out test a few lines below. I thought I'd stick to how it's done in this file. Cheers, Paul.
