[WINESYNC] d3dx9/tests: Avoid a test failure on Vista testbot.

Signed-off-by: Matteo Bruni <mbruni@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>

wine commit id ccdb74d81ac4a95aa87414f6459a8b44d451358a by Matteo Bruni <mbruni@codeweavers.com>
This commit is contained in:
winesync 2020-09-21 22:50:19 +02:00 committed by Jérôme Gardou
parent 9b602dbdc9
commit 65ca5beb3d
2 changed files with 3 additions and 2 deletions

View file

@ -414,7 +414,8 @@ static void D3DXMatrixTest(void)
ret = D3DXMatrixInverse(&gotmat, &determinant, &mat2);
ok(!ret, "Unexpected return value %p.\n", ret);
expect_matrix(&expectedmat, &gotmat, 1);
ok(compare_float(determinant, 5.0f, 0), "Unexpected determinant %.8e.\n", determinant);
ok(compare_float(determinant, 5.0f, 0) || broken(!determinant), /* Vista 64 bit testbot */
"Unexpected determinant %.8e.\n", determinant);
/*____________D3DXMatrixIsIdentity______________*/
expected = FALSE;

View file

@ -15,4 +15,4 @@ files: {include/d3dx9.h: sdk/include/dxsdk/d3dx9.h, include/d3dx9anim.h: sdk/inc
include/d3dx9mesh.h: sdk/include/dxsdk/d3dx9mesh.h, include/d3dx9of.h: sdk/include/dxsdk/d3dx9of.h,
include/d3dx9shader.h: sdk/include/dxsdk/d3dx9shader.h, include/d3dx9shape.h: sdk/include/dxsdk/d3dx9shape.h,
include/d3dx9tex.h: sdk/include/dxsdk/d3dx9tex.h, include/d3dx9xof.h: sdk/include/dxsdk/d3dx9xof.h}
tags: {wine: 5c052b699e7ac5c0e4f2324fe31e2d022dcf4bb5}
tags: {wine: ccdb74d81ac4a95aa87414f6459a8b44d451358a}