dmcompos/tests: Fix a failing test on Windows 8.
The dirty bit is most likely uninitialized, so sometimes this returns S_OK. Signed-off-by: Huw Davies <huw@codeweavers.com> Signed-off-by: Michael Stefaniuc <mstefani@redhat.de> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
95e2059387
commit
960cef8307
|
@ -252,7 +252,7 @@ static void test_chordmap(void)
|
|||
|
||||
/* Unimplemented IPersistStream methods */
|
||||
hr = IPersistStream_IsDirty(ps);
|
||||
ok(hr == S_FALSE, "IPersistStream_IsDirty failed: %08x\n", hr);
|
||||
ok(hr == S_FALSE || broken(hr == S_OK), "IPersistStream_IsDirty failed: %08x\n", hr);
|
||||
hr = IPersistStream_GetSizeMax(ps, &size);
|
||||
ok(hr == E_NOTIMPL, "IPersistStream_GetSizeMax failed: %08x\n", hr);
|
||||
hr = IPersistStream_Save(ps, NULL, TRUE);
|
||||
|
|
Loading…
Reference in New Issue