Module: wine Branch: master Commit: d4ebffd24e4607dd3fea1985947345a1a43368a5 URL: http://source.winehq.org/git/wine.git/?a=commit;h=d4ebffd24e4607dd3fea198594...
Author: Ge van Geldorp ggeldorp@vmware.com Date: Mon Aug 24 21:24:05 2009 +0200
shlwapi/tests: Remove test that crashes on Win7.
---
dlls/shlwapi/tests/istream.c | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/dlls/shlwapi/tests/istream.c b/dlls/shlwapi/tests/istream.c index 66465b8..67d1fe2 100644 --- a/dlls/shlwapi/tests/istream.c +++ b/dlls/shlwapi/tests/istream.c @@ -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);