Commit 56681b53 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

dbghelp/tests: Enable compilation with long types.

parent 2596bd57
EXTRADEFS = -DWINE_NO_LONG_TYPES
TESTDLL = dbghelp.dll TESTDLL = dbghelp.dll
IMPORTS = dbghelp IMPORTS = dbghelp
......
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
static DWORD CALLBACK stack_walk_thread(void *arg) static DWORD CALLBACK stack_walk_thread(void *arg)
{ {
DWORD count = SuspendThread(GetCurrentThread()); DWORD count = SuspendThread(GetCurrentThread());
ok(!count, "got %d\n", count); ok(!count, "got %ld\n", count);
return 0; return 0;
} }
...@@ -86,7 +86,7 @@ static void test_stack_walk(void) ...@@ -86,7 +86,7 @@ static void test_stack_walk(void)
/* first invocation just calculates the return address */ /* first invocation just calculates the return address */
ret = StackWalk64(machine, GetCurrentProcess(), thread, &frame, &ctx, NULL, ret = StackWalk64(machine, GetCurrentProcess(), thread, &frame, &ctx, NULL,
SymFunctionTableAccess64, SymGetModuleBase64, NULL); SymFunctionTableAccess64, SymGetModuleBase64, NULL);
ok(ret, "StackWalk64() failed: %u\n", GetLastError()); ok(ret, "StackWalk64() failed: %lu\n", GetLastError());
ok(frame.AddrPC.Offset == frame0.AddrPC.Offset, "expected %s, got %s\n", ok(frame.AddrPC.Offset == frame0.AddrPC.Offset, "expected %s, got %s\n",
wine_dbgstr_longlong(frame0.AddrPC.Offset), wine_dbgstr_longlong(frame0.AddrPC.Offset),
wine_dbgstr_longlong(frame.AddrPC.Offset)); wine_dbgstr_longlong(frame.AddrPC.Offset));
...@@ -102,7 +102,7 @@ static void test_stack_walk(void) ...@@ -102,7 +102,7 @@ static void test_stack_walk(void)
ret = StackWalk64(machine, GetCurrentProcess(), thread, &frame, &ctx, NULL, ret = StackWalk64(machine, GetCurrentProcess(), thread, &frame, &ctx, NULL,
SymFunctionTableAccess64, SymGetModuleBase64, NULL); SymFunctionTableAccess64, SymGetModuleBase64, NULL);
ok(ret, "StackWalk64() failed: %u\n", GetLastError()); ok(ret, "StackWalk64() failed: %lu\n", GetLastError());
addr = (void *)(DWORD_PTR)frame.AddrPC.Offset; addr = (void *)(DWORD_PTR)frame.AddrPC.Offset;
...@@ -199,11 +199,11 @@ START_TEST(dbghelp) ...@@ -199,11 +199,11 @@ START_TEST(dbghelp)
SetEnvironmentVariableA("_NT_ALT_SYMBOL_PATH", NULL); SetEnvironmentVariableA("_NT_ALT_SYMBOL_PATH", NULL);
ret = SymInitialize(GetCurrentProcess(), NULL, TRUE); ret = SymInitialize(GetCurrentProcess(), NULL, TRUE);
ok(ret, "got error %u\n", GetLastError()); ok(ret, "got error %lu\n", GetLastError());
test_stack_walk(); test_stack_walk();
test_search_path(); test_search_path();
ret = SymCleanup(GetCurrentProcess()); ret = SymCleanup(GetCurrentProcess());
ok(ret, "got error %u\n", GetLastError()); ok(ret, "got error %lu\n", GetLastError());
} }
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