Reverse the order for deleting the items in resetcontent to correctly
[wine] / dlls / msvcrtd / tests / debug.c
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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20
21 #include <stdarg.h>
22
23 #include "windef.h"
24 #include "winbase.h"
25 #include "winnt.h"
26
27 #include "wine/test.h"
28
29 /**********************************************************************/
30
31 static void * (*pMSVCRTD_operator_new_dbg)(unsigned long, int, const char *, int) = NULL;
32
33 /* Some exports are only available in later versions */
34 #define SETNOFAIL(x,y) x = (void*)GetProcAddress(hModule,y)
35 #define SET(x,y) SETNOFAIL(x,y); ok(x != NULL, "Export '%s' not found\n", y)
36
37 int init_functions(void)
38 {
39   HMODULE hModule = LoadLibraryA("msvcrtd.dll");
40   ok(hModule != NULL, "LoadLibraryA failed\n");
41
42   if (!hModule) 
43     return FALSE;
44
45   SET(pMSVCRTD_operator_new_dbg, "??2@YAPAXIHPBDH@Z");
46   if (pMSVCRTD_operator_new_dbg == NULL)
47     return FALSE;
48
49   return TRUE;
50 }
51
52 /**********************************************************************/
53
54 void test_new(void)
55 {
56   void *mem;
57
58   mem = pMSVCRTD_operator_new_dbg(42, 0, __FILE__, __LINE__);
59   ok(mem != NULL, "memory not allocated\n");
60 }
61
62 /**********************************************************************/
63
64 START_TEST(debug)
65 {
66   if (!init_functions()) 
67     return;
68
69   test_new();
70 }