Patrik Stridvall | 5c4420f | 2004-05-18 01:05:36 +0000 | [diff] [blame] | 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 |
Jonathan Ernst | 360a3f9 | 2006-05-18 14:49:52 +0200 | [diff] [blame] | 18 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA |
Patrik Stridvall | 5c4420f | 2004-05-18 01:05:36 +0000 | [diff] [blame] | 19 | */ |
| 20 | |
| 21 | #include <stdarg.h> |
| 22 | |
| 23 | #include "windef.h" |
| 24 | #include "winbase.h" |
| 25 | #include "winnt.h" |
| 26 | |
Saulius Krasuckas | 6de20f3 | 2005-07-21 10:34:08 +0000 | [diff] [blame] | 27 | #include "crtdbg.h" |
| 28 | |
Patrik Stridvall | 5c4420f | 2004-05-18 01:05:36 +0000 | [diff] [blame] | 29 | #include "wine/test.h" |
| 30 | |
| 31 | /**********************************************************************/ |
| 32 | |
| 33 | static void * (*pMSVCRTD_operator_new_dbg)(unsigned long, int, const char *, int) = NULL; |
| 34 | |
| 35 | /* Some exports are only available in later versions */ |
| 36 | #define SETNOFAIL(x,y) x = (void*)GetProcAddress(hModule,y) |
| 37 | #define SET(x,y) SETNOFAIL(x,y); ok(x != NULL, "Export '%s' not found\n", y) |
| 38 | |
Stefan Huehner | 9213d56 | 2005-06-20 15:35:54 +0000 | [diff] [blame] | 39 | static int init_functions(void) |
Patrik Stridvall | 5c4420f | 2004-05-18 01:05:36 +0000 | [diff] [blame] | 40 | { |
| 41 | HMODULE hModule = LoadLibraryA("msvcrtd.dll"); |
Patrik Stridvall | 5c4420f | 2004-05-18 01:05:36 +0000 | [diff] [blame] | 42 | |
Saulius Krasuckas | 56171ee | 2005-08-12 10:33:50 +0000 | [diff] [blame] | 43 | if (!hModule) { |
| 44 | trace("LoadLibraryA failed to load msvcrtd.dll with GLE=%ld\n", GetLastError()); |
Patrik Stridvall | 5c4420f | 2004-05-18 01:05:36 +0000 | [diff] [blame] | 45 | return FALSE; |
Saulius Krasuckas | 56171ee | 2005-08-12 10:33:50 +0000 | [diff] [blame] | 46 | } |
Patrik Stridvall | 5c4420f | 2004-05-18 01:05:36 +0000 | [diff] [blame] | 47 | |
| 48 | SET(pMSVCRTD_operator_new_dbg, "??2@YAPAXIHPBDH@Z"); |
| 49 | if (pMSVCRTD_operator_new_dbg == NULL) |
| 50 | return FALSE; |
| 51 | |
| 52 | return TRUE; |
| 53 | } |
| 54 | |
| 55 | /**********************************************************************/ |
| 56 | |
Stefan Huehner | 9213d56 | 2005-06-20 15:35:54 +0000 | [diff] [blame] | 57 | static void test_new(void) |
Patrik Stridvall | 5c4420f | 2004-05-18 01:05:36 +0000 | [diff] [blame] | 58 | { |
| 59 | void *mem; |
| 60 | |
Saulius Krasuckas | 6de20f3 | 2005-07-21 10:34:08 +0000 | [diff] [blame] | 61 | mem = pMSVCRTD_operator_new_dbg(42, _NORMAL_BLOCK, __FILE__, __LINE__); |
Patrik Stridvall | 5c4420f | 2004-05-18 01:05:36 +0000 | [diff] [blame] | 62 | ok(mem != NULL, "memory not allocated\n"); |
| 63 | } |
| 64 | |
| 65 | /**********************************************************************/ |
| 66 | |
| 67 | START_TEST(debug) |
| 68 | { |
| 69 | if (!init_functions()) |
| 70 | return; |
| 71 | |
| 72 | test_new(); |
| 73 | } |