Austin English : msxml3/tests: Make sure return value is used (LLVM/Clang).

Alexandre Julliard julliard at winehq.org
Thu Feb 10 11:42:10 CST 2011


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

Author: Austin English <austinenglish at gmail.com>
Date:   Wed Feb  9 13:43:41 2011 -0800

msxml3/tests: Make sure return value is used (LLVM/Clang).

---

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

diff --git a/dlls/msxml3/tests/xmldoc.c b/dlls/msxml3/tests/xmldoc.c
index bc7422d..c70c9eb 100644
--- a/dlls/msxml3/tests/xmldoc.c
+++ b/dlls/msxml3/tests/xmldoc.c
@@ -433,6 +433,7 @@ static void test_persiststreaminit(void)
     hr = IXMLDocument_get_root(doc, &element);
     ok(hr == S_OK, "Expected S_OK, got %08x\n", hr);
     hr = IXMLElement_put_text(element, str);
+    ok(hr == E_NOTIMPL, "Expected E_NOTIMPL, got %08x\n", hr);
     IXMLElement_Release(element);
     SysFreeString(str);
 




More information about the wine-cvs mailing list