[MSXML3_WINETEST] Sync with Wine Staging 2.16. CORE-13762

This commit is contained in:
Amine Khaldi 2017-10-21 13:14:13 +01:00
parent 959d60f54a
commit 3a06e69a11
2 changed files with 5 additions and 4 deletions

View file

@ -1,5 +1,7 @@
add_definitions(-DUSE_WINE_TODOS)
add_definitions(
-DUSE_WINE_TODOS
-DWINETEST_USE_DBGSTR_LONGLONG)
list(APPEND SOURCE
domdoc.c

View file

@ -440,9 +440,8 @@ static const CHAR szOpenSeqXML4[] = "<test><x/><x/><y/><z/><z/><v/></test>";
#define _expect64(expr, str, base, TYPE, CONV) { \
TYPE v1 = expr; \
TYPE v2 = CONV(str, NULL, base); \
ok(v1 == v2, #expr "returned 0x%08x%08x, expected 0x%08x%08x\n", \
(ULONG)((ULONG64)v1 >> 32), (ULONG)((ULONG64)v2 & (ULONG64)0xffffffff), \
(ULONG)((ULONG64)v1 >> 32), (ULONG)((ULONG64)v2 & (ULONG64)0xffffffff)); \
ok(v1 == v2, #expr "returned %s, expected %s\n", \
wine_dbgstr_longlong(v1), wine_dbgstr_longlong(v2)); \
}
#define expect_int64(expr, x, base) _expect64(expr, #x, base, LONG64, _strtoi64)