Various trace fixes.
Add trailing '\n's to trace calls. Remove spaces before '\n'.
This commit is contained in:
parent
e739ba9551
commit
f7c24f37ad
|
@ -469,13 +469,13 @@ static void ProcessVerticesTest()
|
||||||
/* Play with some matrices. */
|
/* Play with some matrices. */
|
||||||
|
|
||||||
rc = IDirect3DDevice7_SetTransform(lpD3DDevice, D3DTRANSFORMSTATE_VIEW, &view);
|
rc = IDirect3DDevice7_SetTransform(lpD3DDevice, D3DTRANSFORMSTATE_VIEW, &view);
|
||||||
ok(rc==D3D_OK, "IDirect3DDevice7_SetTransform failed");
|
ok(rc==D3D_OK, "IDirect3DDevice7_SetTransform failed\n");
|
||||||
|
|
||||||
rc = IDirect3DDevice7_SetTransform(lpD3DDevice, D3DTRANSFORMSTATE_PROJECTION, &proj);
|
rc = IDirect3DDevice7_SetTransform(lpD3DDevice, D3DTRANSFORMSTATE_PROJECTION, &proj);
|
||||||
ok(rc==D3D_OK, "IDirect3DDevice7_SetTransform failed");
|
ok(rc==D3D_OK, "IDirect3DDevice7_SetTransform failed\n");
|
||||||
|
|
||||||
rc = IDirect3DDevice7_SetTransform(lpD3DDevice, D3DTRANSFORMSTATE_WORLD, &world);
|
rc = IDirect3DDevice7_SetTransform(lpD3DDevice, D3DTRANSFORMSTATE_WORLD, &world);
|
||||||
ok(rc==D3D_OK, "IDirect3DDevice7_SetTransform failed");
|
ok(rc==D3D_OK, "IDirect3DDevice7_SetTransform failed\n");
|
||||||
|
|
||||||
rc = IDirect3DVertexBuffer7_ProcessVertices(lpVBufDest1, D3DVOP_TRANSFORM, 0, 4, lpVBufSrc, 0, lpD3DDevice, 0);
|
rc = IDirect3DVertexBuffer7_ProcessVertices(lpVBufDest1, D3DVOP_TRANSFORM, 0, 4, lpVBufSrc, 0, lpD3DDevice, 0);
|
||||||
ok(rc==D3D_OK , "IDirect3DVertexBuffer::ProcessVertices returned: %lx\n", rc);
|
ok(rc==D3D_OK , "IDirect3DVertexBuffer::ProcessVertices returned: %lx\n", rc);
|
||||||
|
@ -492,7 +492,7 @@ static void ProcessVerticesTest()
|
||||||
vp.dvMinZ = 1.0;
|
vp.dvMinZ = 1.0;
|
||||||
vp.dvMaxZ = 0.0;
|
vp.dvMaxZ = 0.0;
|
||||||
rc = IDirect3DDevice7_SetViewport(lpD3DDevice, &vp);
|
rc = IDirect3DDevice7_SetViewport(lpD3DDevice, &vp);
|
||||||
ok(rc==D3D_OK, "IDirect3DDevice7_SetViewport failed");
|
ok(rc==D3D_OK, "IDirect3DDevice7_SetViewport failed\n");
|
||||||
|
|
||||||
/* Check the results */
|
/* Check the results */
|
||||||
if( !comparefloat(out[0].x, 256.0 ) || /* X coordinate is cut at the surface edges */
|
if( !comparefloat(out[0].x, 256.0 ) || /* X coordinate is cut at the surface edges */
|
||||||
|
|
|
@ -299,7 +299,7 @@ static void test_dib_info(HBITMAP hbm, const void *bits, const BITMAPINFOHEADER
|
||||||
ok(ret == sizeof(ds), "%d != %d\n", ret, sizeof(ds));
|
ok(ret == sizeof(ds), "%d != %d\n", ret, sizeof(ds));
|
||||||
|
|
||||||
ok(ds.dsBm.bmBits == bits, "wrong bm.bmBits %p != %p\n", ds.dsBm.bmBits, bits);
|
ok(ds.dsBm.bmBits == bits, "wrong bm.bmBits %p != %p\n", ds.dsBm.bmBits, bits);
|
||||||
ok(ds.dsBmih.biSizeImage == ds.dsBm.bmWidthBytes * ds.dsBm.bmHeight, "%lu != %u",
|
ok(ds.dsBmih.biSizeImage == ds.dsBm.bmWidthBytes * ds.dsBm.bmHeight, "%lu != %u\n",
|
||||||
ds.dsBmih.biSizeImage, ds.dsBm.bmWidthBytes * ds.dsBm.bmHeight);
|
ds.dsBmih.biSizeImage, ds.dsBm.bmWidthBytes * ds.dsBm.bmHeight);
|
||||||
ok(bmih->biSizeImage == 0, "%lu != 0\n", bmih->biSizeImage);
|
ok(bmih->biSizeImage == 0, "%lu != 0\n", bmih->biSizeImage);
|
||||||
ds.dsBmih.biSizeImage = 0;
|
ds.dsBmih.biSizeImage = 0;
|
||||||
|
|
|
@ -242,7 +242,7 @@ static void test_module(DWORD pid, const char* expected[], unsigned num_expected
|
||||||
{
|
{
|
||||||
trace("PID=%lx base=%p size=%lx %s %s\n",
|
trace("PID=%lx base=%p size=%lx %s %s\n",
|
||||||
me.th32ProcessID, me.modBaseAddr, me.modBaseSize, me.szExePath, me.szModule);
|
me.th32ProcessID, me.modBaseAddr, me.modBaseSize, me.szExePath, me.szModule);
|
||||||
ok(me.th32ProcessID == pid, "wrong returned process id");
|
ok(me.th32ProcessID == pid, "wrong returned process id\n");
|
||||||
for (i = 0; i < num_expected; i++)
|
for (i = 0; i < num_expected; i++)
|
||||||
if (!lstrcmpi(expected[i], me.szModule)) found[i]++;
|
if (!lstrcmpi(expected[i], me.szModule)) found[i]++;
|
||||||
num++;
|
num++;
|
||||||
|
|
|
@ -72,13 +72,13 @@ static void test_null(void)
|
||||||
UINT r;
|
UINT r;
|
||||||
|
|
||||||
r = MsiOpenPackageExW(NULL, 0, &hpkg);
|
r = MsiOpenPackageExW(NULL, 0, &hpkg);
|
||||||
ok( r == ERROR_INVALID_PARAMETER,"wrong error");
|
ok( r == ERROR_INVALID_PARAMETER,"wrong error\n");
|
||||||
|
|
||||||
r = MsiQueryProductStateW(NULL);
|
r = MsiQueryProductStateW(NULL);
|
||||||
ok( r == INSTALLSTATE_INVALIDARG, "wrong return\n");
|
ok( r == INSTALLSTATE_INVALIDARG, "wrong return\n");
|
||||||
|
|
||||||
r = MsiEnumFeaturesW(NULL,0,NULL,NULL);
|
r = MsiEnumFeaturesW(NULL,0,NULL,NULL);
|
||||||
ok( r == ERROR_INVALID_PARAMETER,"wrong error");
|
ok( r == ERROR_INVALID_PARAMETER,"wrong error\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
START_TEST(msi)
|
START_TEST(msi)
|
||||||
|
|
|
@ -515,7 +515,7 @@ static void test_class_moniker(void)
|
||||||
ok_ole_success(hr, IMoniker_IsSystemMoniker);
|
ok_ole_success(hr, IMoniker_IsSystemMoniker);
|
||||||
|
|
||||||
ok(moniker_type == MKSYS_CLASSMONIKER,
|
ok(moniker_type == MKSYS_CLASSMONIKER,
|
||||||
"dwMkSys != MKSYS_CLASSMONIKER, instead was 0x%08lx",
|
"dwMkSys != MKSYS_CLASSMONIKER, instead was 0x%08lx\n",
|
||||||
moniker_type);
|
moniker_type);
|
||||||
|
|
||||||
hr = CreateBindCtx(0, &bindctx);
|
hr = CreateBindCtx(0, &bindctx);
|
||||||
|
@ -644,7 +644,7 @@ static void test_item_moniker(void)
|
||||||
ok_ole_success(hr, IMoniker_IsSystemMoniker);
|
ok_ole_success(hr, IMoniker_IsSystemMoniker);
|
||||||
|
|
||||||
ok(moniker_type == MKSYS_ITEMMONIKER,
|
ok(moniker_type == MKSYS_ITEMMONIKER,
|
||||||
"dwMkSys != MKSYS_ITEMMONIKER, instead was 0x%08lx",
|
"dwMkSys != MKSYS_ITEMMONIKER, instead was 0x%08lx\n",
|
||||||
moniker_type);
|
moniker_type);
|
||||||
|
|
||||||
hr = CreateBindCtx(0, &bindctx);
|
hr = CreateBindCtx(0, &bindctx);
|
||||||
|
@ -702,7 +702,7 @@ static void test_anti_moniker(void)
|
||||||
hr = IMoniker_IsSystemMoniker(moniker, &moniker_type);
|
hr = IMoniker_IsSystemMoniker(moniker, &moniker_type);
|
||||||
ok_ole_success(hr, IMoniker_IsSystemMoniker);
|
ok_ole_success(hr, IMoniker_IsSystemMoniker);
|
||||||
ok(moniker_type == MKSYS_ANTIMONIKER,
|
ok(moniker_type == MKSYS_ANTIMONIKER,
|
||||||
"dwMkSys != MKSYS_ANTIMONIKER, instead was 0x%08lx",
|
"dwMkSys != MKSYS_ANTIMONIKER, instead was 0x%08lx\n",
|
||||||
moniker_type);
|
moniker_type);
|
||||||
|
|
||||||
hr = IMoniker_Inverse(moniker, &inverse);
|
hr = IMoniker_Inverse(moniker, &inverse);
|
||||||
|
@ -776,7 +776,7 @@ static void test_generic_composite_moniker(void)
|
||||||
ok_ole_success(hr, IMoniker_IsSystemMoniker);
|
ok_ole_success(hr, IMoniker_IsSystemMoniker);
|
||||||
|
|
||||||
ok(moniker_type == MKSYS_GENERICCOMPOSITE,
|
ok(moniker_type == MKSYS_GENERICCOMPOSITE,
|
||||||
"dwMkSys != MKSYS_GENERICCOMPOSITE, instead was 0x%08lx",
|
"dwMkSys != MKSYS_GENERICCOMPOSITE, instead was 0x%08lx\n",
|
||||||
moniker_type);
|
moniker_type);
|
||||||
|
|
||||||
hr = CreateBindCtx(0, &bindctx);
|
hr = CreateBindCtx(0, &bindctx);
|
||||||
|
|
Loading…
Reference in New Issue