Module: wine Branch: master Commit: a6d584cec9f3e22942c964e5c99e234a213bb7a3 URL: http://source.winehq.org/git/wine.git/?a=commit;h=a6d584cec9f3e22942c964e5c9...
Author: Huw Davies huw@codeweavers.com Date: Tue Feb 17 15:42:09 2009 +0000
inetcomm/tests: Object is a static singleton on win95.
---
dlls/inetcomm/tests/mimeintl.c | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/dlls/inetcomm/tests/mimeintl.c b/dlls/inetcomm/tests/mimeintl.c index e49567d..563943f 100644 --- a/dlls/inetcomm/tests/mimeintl.c +++ b/dlls/inetcomm/tests/mimeintl.c @@ -52,7 +52,9 @@ static void test_create(void) /* test to show that the object is a singleton with a reference held by the dll. */ ref = IMimeInternational_Release(internat2); - ok(ref == 2, "got %d\n", ref); + ok(ref == 2 || + ref == 1, /* win95 - object is a static singleton */ + "got %d\n", ref);
ref = IMimeInternational_Release(internat); ok(ref == 1, "got %d\n", ref);