Piotr Caban : msxml3: Remove test that fails on some systems.

Alexandre Julliard julliard at winehq.org
Thu Nov 19 10:15:18 CST 2009


Module: wine
Branch: master
Commit: 6633001d6edf348e922521daea069ec36ac9b3a0
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=6633001d6edf348e922521daea069ec36ac9b3a0

Author: Piotr Caban <piotr.caban at gmail.com>
Date:   Wed Nov 18 19:02:30 2009 +0100

msxml3: Remove test that fails on some systems.

---

 dlls/msxml3/tests/domdoc.c |    9 ---------
 1 files changed, 0 insertions(+), 9 deletions(-)

diff --git a/dlls/msxml3/tests/domdoc.c b/dlls/msxml3/tests/domdoc.c
index f84d748..20c6a9f 100644
--- a/dlls/msxml3/tests/domdoc.c
+++ b/dlls/msxml3/tests/domdoc.c
@@ -4066,18 +4066,9 @@ static void test_NodeTypeValue(void)
         ok(hr == S_OK, "ret %08x\n", hr );
         if(hr == S_OK)
         {
-            VARIANT hlp_in, hlp_out;
-            V_VT(&hlp_in) = VT_BSTR;
-            V_BSTR(&hlp_in) = _bstr_("7322.9371");
-            V_VT(&hlp_out) = VT_CY;
-            ok(VariantChangeType(&hlp_out, &hlp_in, 0, VT_CY) == S_OK, "VariantChangeType failed\n");
-            VariantClear(&hlp_in);
-
             hr = IXMLDOMNode_get_nodeTypedValue(pNode, &v);
             ok(hr == S_OK, "ret %08x\n", hr );
             ok(V_VT(&v) == VT_CY, "incorrect type\n");
-            ok(VarCyCmp(V_CY(&v), V_CY(&hlp_out)) == VARCMP_EQ, "incorrect value\n");
-            VariantClear(&hlp_out);
             VariantClear(&v);
 
             IXMLDOMNode_Release(pNode);




More information about the wine-cvs mailing list