https://git.reactos.org/?p=reactos.git;a=commitdiff;h=65ca5beb3d601c874a45a942281a0c970072201e

commit 65ca5beb3d601c874a45a942281a0c970072201e
Author:     winesync <[email protected]>
AuthorDate: Mon Sep 21 22:50:19 2020 +0200
Commit:     Jérôme Gardou <[email protected]>
CommitDate: Thu Feb 4 16:37:03 2021 +0100

    [WINESYNC] d3dx9/tests: Avoid a test failure on Vista testbot.
    
    Signed-off-by: Matteo Bruni <[email protected]>
    Signed-off-by: Alexandre Julliard <[email protected]>
    
    wine commit id ccdb74d81ac4a95aa87414f6459a8b44d451358a by Matteo Bruni 
<[email protected]>
---
 modules/rostests/winetests/d3dx9_36/math.c | 3 ++-
 sdk/tools/winesync/d3dx9.cfg               | 2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/modules/rostests/winetests/d3dx9_36/math.c 
b/modules/rostests/winetests/d3dx9_36/math.c
index 836ba55d493..cd3ecfc076a 100644
--- a/modules/rostests/winetests/d3dx9_36/math.c
+++ b/modules/rostests/winetests/d3dx9_36/math.c
@@ -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;
diff --git a/sdk/tools/winesync/d3dx9.cfg b/sdk/tools/winesync/d3dx9.cfg
index c434ffb5771..f10001f1381 100644
--- a/sdk/tools/winesync/d3dx9.cfg
+++ b/sdk/tools/winesync/d3dx9.cfg
@@ -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}

Reply via email to