ReactOS 0.4.15-dev-7842-g558ab78
debug.c
Go to the documentation of this file.
1/*
2 * Unit test suite for debug functions.
3 *
4 * Copyright 2004 Patrik Stridvall
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 */
20
21#include <stdarg.h>
22
23#include "windef.h"
24#include "winbase.h"
25#include "winnt.h"
26
27#include "crtdbg.h"
28
29#include "wine/test.h"
30
31/**********************************************************************/
32
33static void * (__cdecl *pMSVCRTD_operator_new_dbg)(size_t, int, const char *, int) = NULL;
34static void * (__cdecl *pMSVCRTD_operator_delete)(void *) = NULL;
35
36/* Some exports are only available in later versions */
37#define SETNOFAIL(x,y) x = (void*)GetProcAddress(hModule,y)
38#define SET(x,y) do { SETNOFAIL(x,y); ok(x != NULL, "Export '%s' not found\n", y); } while(0)
39
40static BOOL init_functions(void)
41{
42 HMODULE hModule = LoadLibraryA("msvcrtd.dll");
43
44 if (!hModule) {
45 trace("LoadLibraryA failed to load msvcrtd.dll with GLE=%d\n", GetLastError());
46 return FALSE;
47 }
48
49 if (sizeof(void *) > sizeof(int)) /* 64-bit has a different mangled name */
50 {
51 SET(pMSVCRTD_operator_new_dbg, "??2@YAPEAX_KHPEBDH@Z");
52 SET(pMSVCRTD_operator_delete, "??3@YAXPEAX@Z");
53 }
54 else
55 {
56 SET(pMSVCRTD_operator_new_dbg, "??2@YAPAXIHPBDH@Z");
57 SET(pMSVCRTD_operator_delete, "??3@YAXPAX@Z");
58 }
59
61 return FALSE;
62
63 return TRUE;
64}
65
66/**********************************************************************/
67
68static void test_new(void)
69{
70 void *mem;
71
72 mem = pMSVCRTD_operator_new_dbg(42, _NORMAL_BLOCK, __FILE__, __LINE__);
73 ok(mem != NULL, "memory not allocated\n");
75
76 mem = pMSVCRTD_operator_new_dbg(42, _CRT_BLOCK, __FILE__, __LINE__);
77 ok(mem != NULL, "memory not allocated\n");
79}
80
81/**********************************************************************/
82
84{
85 if (!init_functions())
86 return;
87
88 test_new();
89}
#define __cdecl
Definition: accygwin.h:79
#define trace
Definition: atltest.h:70
#define ok(value,...)
Definition: atltest.h:57
#define START_TEST(x)
Definition: atltest.h:75
#define _NORMAL_BLOCK
Definition: crtdbg.h:66
#define _CRT_BLOCK
Definition: crtdbg.h:67
#define NULL
Definition: types.h:112
#define TRUE
Definition: types.h:120
#define FALSE
Definition: types.h:117
HMODULE hModule
Definition: animate.c:44
HINSTANCE WINAPI DECLSPEC_HOTPATCH LoadLibraryA(LPCSTR lpLibFileName)
Definition: loader.c:111
unsigned int BOOL
Definition: ntddk_ex.h:94
#define debug(msg)
Definition: key_call.c:71
static void *__cdecl * pMSVCRTD_operator_new_dbg(size_t, int, const char *, int)
static void *__cdecl * pMSVCRTD_operator_delete(void *)
static void test_new(void)
Definition: debug.c:68
#define SET(x, y)
Definition: debug.c:38
static BOOL init_functions(void)
Definition: debug.c:40
Definition: mem.c:156
DWORD WINAPI GetLastError(void)
Definition: except.c:1042