shlwapi/tests: Remove test that crashes on Win7.

This commit is contained in:
Ge van Geldorp 2009-08-24 21:24:05 +02:00 committed by Alexandre Julliard
parent 13a84dea30
commit d4ebffd24e
1 changed files with 1 additions and 2 deletions

View File

@ -177,8 +177,7 @@ static void test_IStream_invalid_operations(IStream * stream, DWORD mode)
/* IStream::Clone */
ret = IStream_Clone(stream, NULL);
ok(ret == E_NOTIMPL, "expected E_NOTIMPL, got 0x%08x\n", ret);
/* Passing a NULL pointer for the second IStream::Clone param crashes on Win7 */
clone = NULL;
ret = IStream_Clone(stream, &clone);