Commit e1c9c259 authored by Paul Vriens's avatar Paul Vriens Committed by Alexandre Julliard

msxml3/tests: Fix a test on win98.

parent fe360d6a
...@@ -260,13 +260,13 @@ static void test_xmlelem_collection(void) ...@@ -260,13 +260,13 @@ static void test_xmlelem_collection(void)
IXMLElement *element = NULL, *child; IXMLElement *element = NULL, *child;
IXMLElementCollection *collection = NULL; IXMLElementCollection *collection = NULL;
IEnumVARIANT *enumVar = NULL; IEnumVARIANT *enumVar = NULL;
CHAR pathA[MAX_PATH];
WCHAR path[MAX_PATH]; WCHAR path[MAX_PATH];
long length, type; long length, type;
ULONG num_vars; ULONG num_vars;
VARIANT var, vIndex, vName; VARIANT var, vIndex, vName;
BSTR url, str; BSTR url, str;
static const CHAR szBankXML[] = "bank.xml";
static const WCHAR szBankXML[] = {'b','a','n','k','.','x','m','l',0};
static const WCHAR szNumber[] = {'N','U','M','B','E','R',0}; static const WCHAR szNumber[] = {'N','U','M','B','E','R',0};
static const WCHAR szName[] = {'N','A','M','E',0}; static const WCHAR szName[] = {'N','A','M','E',0};
...@@ -278,13 +278,13 @@ static void test_xmlelem_collection(void) ...@@ -278,13 +278,13 @@ static void test_xmlelem_collection(void)
return; return;
} }
create_xml_file("bank.xml"); create_xml_file(szBankXML);
GetFullPathNameW(szBankXML, MAX_PATH, path, NULL); GetFullPathNameA(szBankXML, MAX_PATH, pathA, NULL);
MultiByteToWideChar(CP_ACP, 0, pathA, -1, path, MAX_PATH);
url = SysAllocString(path); url = SysAllocString(path);
hr = IXMLDocument_put_URL(doc, url); hr = IXMLDocument_put_URL(doc, url);
/* Win98 returns ERROR_URL_NOT_FOUND */ ok(hr == S_OK, "Expected S_OK, got 0x%08x\n", hr);
ok(hr == S_OK || hr == ERROR_URL_NOT_FOUND, "Expected S_OK, got 0x%08x\n", hr);
SysFreeString(url); SysFreeString(url);
if(hr != S_OK) if(hr != S_OK)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment