ole32/tests: Don't outdent todo_wine*.
This prevents -Wmisleading-indentation warnings (Mingw GCC11). Signed-off-by: Eric Pouech <eric.pouech@gmail.com> Signed-off-by: Huw Davies <huw@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
912cdec76d
commit
3a843a43b4
|
@ -2809,7 +2809,7 @@ static void test_item_moniker(void)
|
|||
|
||||
moniker3 = (void *)0xdeadbeef;
|
||||
hr = IMoniker_CommonPrefixWith(moniker, moniker2, &moniker3);
|
||||
todo_wine
|
||||
todo_wine
|
||||
{
|
||||
ok(hr == MK_E_NOPREFIX, "Unexpected hr %#x.\n", hr);
|
||||
ok(!moniker3, "Unexpected object.\n");
|
||||
|
|
|
@ -1234,7 +1234,7 @@ static void test_OleLoad(IStorage *pStorage)
|
|||
if (fmt == CF_METAFILEPICT)
|
||||
ok(hr == S_OK, "OleDraw error %#x: cfFormat = %u, advf = %#x\n", hr, fmt, header.advf);
|
||||
else if (fmt == CF_ENHMETAFILE)
|
||||
todo_wine
|
||||
todo_wine
|
||||
ok(hr == S_OK, "OleDraw error %#x: cfFormat = %u, advf = %#x\n", hr, fmt, header.advf);
|
||||
else
|
||||
ok(hr == OLE_E_BLANK || hr == OLE_E_NOTRUNNING || hr == E_FAIL, "OleDraw should fail: %#x, cfFormat = %u, advf = %#x\n", hr, fmt, header.advf);
|
||||
|
|
|
@ -3313,7 +3313,7 @@ static void test_direct_swmr(void)
|
|||
|
||||
/* it's possible to create in writer mode */
|
||||
hr = StgCreateDocfile(fileW, STGM_CREATE | STGM_READWRITE | STGM_SHARE_DENY_WRITE | STGM_DIRECT_SWMR, 0, &stg);
|
||||
todo_wine
|
||||
todo_wine
|
||||
ok(hr == S_OK, "got %08x\n", hr);
|
||||
if (hr == S_OK) {
|
||||
IStorage_Release(stg);
|
||||
|
|
Loading…
Reference in New Issue