inetcomm/tests: AddRef on the stream doesn't return the ref count on win95.

oldstable
Huw Davies 2009-02-17 15:43:09 +00:00 committed by Alexandre Julliard
parent a6d584cec9
commit 6660d1dc38
1 changed files with 3 additions and 1 deletions

View File

@ -324,7 +324,9 @@ static void test_CreateMessage(void)
IMimeMessage_Release(msg);
ref = IStream_AddRef(stream);
ok(ref == 2, "ref %d\n", ref);
ok(ref == 2 ||
broken(ref == 1), /* win95 */
"ref %d\n", ref);
IStream_Release(stream);
IStream_Release(stream);