ReactOS 0.4.16-dev-942-g91fadeb
cpp.c
Go to the documentation of this file.
1/*
2 * Copyright 2016 Daniel Lehman (Esri)
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
17 */
18
19#include <errno.h>
20#include <stdarg.h>
21#include <stdlib.h>
22#include <wchar.h>
23#include <stdio.h>
24
25#include <windef.h>
26#include <winbase.h>
27#include <verrsrc.h>
28#include <dbghelp.h>
29#include "wine/test.h"
30
31typedef unsigned char MSVCRT_bool;
32
33typedef struct {
34 const char *what;
37
38typedef struct
39{
40 char *name;
41 char mangled[32];
43
44typedef struct _type_info_list
45{
47 char name[1];
49
50static void* (CDECL *p_malloc)(size_t);
51static void (CDECL *p___std_exception_copy)(const __std_exception_data*, __std_exception_data*);
52static void (CDECL *p___std_exception_destroy)(__std_exception_data*);
53static int (CDECL *p___std_type_info_compare)(const type_info140*, const type_info140*);
55static void (CDECL *p___std_type_info_destroy_list)(SLIST_HEADER*);
56static size_t (CDECL *p___std_type_info_hash)(type_info140*);
57static char* (__cdecl *p___unDName)(char*,const char*,int,void*,void*,unsigned short int);
58
59static BOOL init(void)
60{
62
63 module = LoadLibraryA("ucrtbase.dll");
64 if (!module)
65 {
66 win_skip("ucrtbase.dll not installed\n");
67 return FALSE;
68 }
69
70 p_malloc = (void*)GetProcAddress(module, "malloc");
71 p___std_exception_copy = (void*)GetProcAddress(module, "__std_exception_copy");
72 p___std_exception_destroy = (void*)GetProcAddress(module, "__std_exception_destroy");
73 p___std_type_info_compare = (void*)GetProcAddress(module, "__std_type_info_compare");
74 p___std_type_info_name = (void*)GetProcAddress(module, "__std_type_info_name");
75 p___std_type_info_destroy_list = (void*)GetProcAddress(module, "__std_type_info_destroy_list");
76 p___std_type_info_hash = (void*)GetProcAddress(module, "__std_type_info_hash");
77 p___unDName = (void*)GetProcAddress(module, "__unDName");
78 return TRUE;
79}
80
81static void test___std_exception(void)
82{
85
86 if (0) /* crash on Windows */
87 {
88 p___std_exception_copy(NULL, &src);
89 p___std_exception_copy(&dst, NULL);
90
91 src.what = "invalid free";
92 src.dofree = 1;
93 p___std_exception_destroy(&src);
94 p___std_exception_destroy(NULL);
95 }
96
97 src.what = "what";
98 src.dofree = 0;
99 p___std_exception_copy(&src, &dst);
100 ok(dst.what == src.what, "expected what to be same, got src %p dst %p\n", src.what, dst.what);
101 ok(!dst.dofree, "expected 0, got %d\n", dst.dofree);
102
103 src.dofree = 0x42;
104 p___std_exception_copy(&src, &dst);
105 ok(dst.what != src.what, "expected what to be different, got src %p dst %p\n", src.what, dst.what);
106 ok(dst.dofree == 1, "expected 1, got %d\n", dst.dofree);
107
108 p___std_exception_destroy(&dst);
109 ok(!dst.what, "expected NULL, got %p\n", dst.what);
110 ok(!dst.dofree, "expected 0, got %d\n", dst.dofree);
111
112 src.what = NULL;
113 src.dofree = 0;
114 p___std_exception_copy(&src, &dst);
115 ok(!dst.what, "dst.what != NULL\n");
116 ok(!dst.dofree, "dst.dofree != FALSE\n");
117
118 src.what = NULL;
119 src.dofree = 1;
120 p___std_exception_copy(&src, &dst);
121 ok(!dst.what, "dst.what != NULL\n");
122 ok(!dst.dofree, "dst.dofree != FALSE\n");
123}
124
125static void test___std_type_info(void)
126{
127 type_info140 ti1 = { NULL, ".?AVa@@" };
128 type_info140 ti2 = { NULL, ".?AVb@@" };
129 type_info140 ti3 = ti1;
132 const char *ret;
133 size_t hash1, hash2;
134 int eq;
135
136
138 p___std_type_info_destroy_list(&header);
139
140 elem = p_malloc(sizeof(*elem));
141 memset(elem, 0, sizeof(*elem));
143 p___std_type_info_destroy_list(&header);
144 ok(!InterlockedPopEntrySList(&header), "list is not empty\n");
145
147 ok(!strcmp(ret, "class a"), "__std_type_info_name(&ti1) = %s\n", ret);
148 ok(ti1.name == ret, "ti1.name = %p, ret = %p\n", ti1.name, ret);
149
150 p___std_type_info_destroy_list(&header);
151 ok(!InterlockedPopEntrySList(&header), "list is not empty\n");
152 ok(ti1.name == ret, "ti1.name = %p, ret = %p\n", ti1.name, ret);
153 ti1.name = NULL;
154
155 eq = p___std_type_info_compare(&ti1, &ti1);
156 ok(eq == 0, "__std_type_info_compare(&ti1, &ti1) = %d\n", eq);
157
158 eq = p___std_type_info_compare(&ti1, &ti2);
159 ok(eq == -1, "__std_type_info_compare(&ti1, &ti2) = %d\n", eq);
160
161 eq = p___std_type_info_compare(&ti1, &ti3);
162 ok(eq == 0, "__std_type_info_compare(&ti1, &ti3) = %d\n", eq);
163
164 ti1.mangled[0] = 0;
165 ti1.mangled[1] = 0;
166 ti1.mangled[2] = 0;
167 hash1 = p___std_type_info_hash(&ti1);
168#ifdef _WIN64
169 ok(hash1 == 0xcbf29ce44fd0bfc1, "hash = %p\n", (void*)hash1);
170#else
171 ok(hash1 == 0x811c9dc5, "hash = %p\n", (void*)hash1);
172#endif
173
174 ti1.mangled[0] = 1;
175 hash2 = p___std_type_info_hash(&ti1);
176 ok(hash1 == hash2, "hash1 != hash2 (first char not ignored)\n");
177
178 ti1.mangled[1] = 1;
179 hash1 = p___std_type_info_hash(&ti1);
180#ifdef _WIN64
181 ok(hash1 == 0xaf63bc4c29620a60, "hash = %p\n", (void*)hash1);
182#else
183 ok(hash1 == 0x40c5b8c, "hash = %p\n", (void*)hash1);
184#endif
185 ok(hash1 != hash2, "hash1 == hash2 for different strings\n");
186
187 ti1.mangled[1] = 2;
188 hash2 = p___std_type_info_hash(&ti1);
189 ok(hash1 != hash2, "hash1 == hash2 for different strings\n");
190
191 hash1 = p___std_type_info_hash(&ti2);
192 ok(hash1 != hash2, "hash1 == hash2 for different strings\n");
193}
194
195static void test___unDName(void)
196{
197 static struct {const char *in; const char *out; const char *broken; unsigned int flags;} und_tests[] =
198 {
199/* 0 */ {"??4QDnsDomainNameRecord@@QAEAAV0@$$QAV0@@Z",
200 "public: class QDnsDomainNameRecord & __thiscall QDnsDomainNameRecord::operator=(class QDnsDomainNameRecord &&)"},
201/* 1 */ {"??4QDnsDomainNameRecord@@QAEAAV0@$$QEAV0@@Z",
202 "public: class QDnsDomainNameRecord & __thiscall QDnsDomainNameRecord::operator=(class QDnsDomainNameRecord && __ptr64)"},
203/* 2 */ {"??__K_l@@YA?AUCC@@I@Z", "struct CC __cdecl operator \"\" _l(unsigned int)",
204 "??__K_l@@YA?AUCC@@I@Z" /* W10 1507 fails on this :-( */},
205/* 3 */ {"?meth@Q@@QEGBA?AV1@XZ",
206 "public: class Q __cdecl Q::meth(void)const __ptr64& ",
207 "public: ?? :: ?? ::XZ::V1" /* W10 1507 fails on this :-( */},
208/* 4 */ {"?meth@Q@@QEHAA?AV1@XZ",
209 "public: class Q __cdecl Q::meth(void) __ptr64&& ",
210 "public: ?? :: ?? ::XZ::V1" /* W10 1507 fails on this :-( */},
211/* 5 */ {"?meth@Q@@QEGBA?AV1@XZ",
212 "public: class Q Q::meth(void)const & ",
213 "public: ?? :: ?? ::XZ::V1" /* W10 1507 fails on this :-( */,
215/* 6 */ {"?meth@Q@@QEHAA?AV1@XZ",
216 "public: class Q Q::meth(void)&& ",
217 "public: ?? :: ?? ::XZ::V1" /* W10 1507 fails on this :-( */,
219/* 7 */ {"?AU?$my_iter@H$0A@$$V@@",
220 "struct my_iter<int,0>",
221 NULL,
223/* 8 */ {"??$foo@J_W$$T@bar@@YAJQB_W$$THQAUgod@@@Z",
224 "long __cdecl bar::foo<long,wchar_t,std::nullptr_t>(wchar_t const * const,std::nullptr_t,int,struct god * const)"},
225
226 };
227 unsigned i;
228 for (i = 0; i < ARRAY_SIZE(und_tests); i++)
229 {
230 char *name = p___unDName(0, und_tests[i].in, 0, malloc, free, und_tests[i].flags);
231 ok(!strcmp(name, und_tests[i].out) ||
232 broken(und_tests[i].broken && !strcmp(und_tests[i].broken, name)),
233 "unDName returned %s for #%u\n", wine_dbgstr_a(name), i);
234 free(name);
235 }
236}
237
239{
240 if (!init()) return;
244}
int strcmp(const char *String1, const char *String2)
Definition: utclib.c:469
#define __cdecl
Definition: accygwin.h:79
#define ok(value,...)
Definition: atltest.h:57
#define broken(x)
Definition: atltest.h:178
#define START_TEST(x)
Definition: atltest.h:75
#define ARRAY_SIZE(A)
Definition: main.h:20
#define UNDNAME_NO_MS_KEYWORDS
Definition: dbghelp.h:1253
#define UNDNAME_NO_ARGUMENTS
Definition: dbghelp.h:1266
#define free
Definition: debug_ros.c:5
#define malloc
Definition: debug_ros.c:4
#define NULL
Definition: types.h:112
#define TRUE
Definition: types.h:120
#define FALSE
Definition: types.h:117
#define CDECL
Definition: compat.h:29
#define GetProcAddress(x, y)
Definition: compat.h:753
HINSTANCE WINAPI DECLSPEC_HOTPATCH LoadLibraryA(LPCSTR lpLibFileName)
Definition: loader.c:111
__kernel_size_t size_t
Definition: linux.h:237
unsigned int BOOL
Definition: ntddk_ex.h:94
GLenum src
Definition: glext.h:6340
GLuint in
Definition: glext.h:9616
GLenum GLenum dst
Definition: glext.h:6340
GLbitfield flags
Definition: glext.h:7161
GLsizei GLenum const GLvoid GLsizei GLenum GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLint GLint GLint GLshort GLshort GLshort GLubyte GLubyte GLubyte GLuint GLuint GLuint GLushort GLushort GLushort GLbyte GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLfloat GLint GLint GLint GLint GLshort GLshort GLshort GLshort GLubyte GLubyte GLubyte GLubyte GLuint GLuint GLuint GLuint GLushort GLushort GLushort GLushort GLboolean const GLdouble const GLfloat const GLint const GLshort const GLbyte const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLdouble const GLfloat const GLfloat const GLint const GLint const GLshort const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort GLenum GLenum GLenum GLfloat GLenum GLint GLenum GLenum GLenum GLfloat GLenum GLenum GLint GLenum GLfloat GLenum GLint GLint GLushort GLenum GLenum GLfloat GLenum GLenum GLint GLfloat const GLubyte GLenum GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLint GLint GLsizei GLsizei GLint GLenum GLenum const GLvoid GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLenum const GLdouble GLenum GLenum const GLfloat GLenum GLenum const GLint GLsizei GLuint GLfloat GLuint GLbitfield GLfloat GLint GLuint GLboolean GLenum GLfloat GLenum GLbitfield GLenum GLfloat GLfloat GLint GLint const GLfloat GLenum GLfloat GLfloat GLint GLint GLfloat GLfloat GLint GLint const GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat const GLdouble const GLfloat const GLdouble const GLfloat GLint i
Definition: glfuncs.h:248
#define eq(received, expected, label, type)
Definition: locale.c:144
static unsigned int
Definition: cpp.c:58
static size_t elem
Definition: string.c:69
static char *__cdecl * p___unDName(char *, const char *, int, void *, void *, unsigned short int)
unsigned char MSVCRT_bool
Definition: cpp.c:31
static BOOL init(void)
Definition: cpp.c:59
static void test___std_type_info(void)
Definition: cpp.c:125
static void test___unDName(void)
Definition: cpp.c:195
static void *CDECL * p_malloc(size_t)
struct _type_info_list type_info_list
static void test___std_exception(void)
Definition: cpp.c:81
static const type_info140 *static const char *CDECL * p___std_type_info_name(type_info140 *, SLIST_HEADER *)
const char int int int static __inline const char * wine_dbgstr_a(const char *s)
Definition: debug.h:187
#define win_skip
Definition: test.h:164
#define memset(x, y, z)
Definition: compat.h:39
const char * what
Definition: cpp.c:34
MSVCRT_bool dofree
Definition: cpp.c:35
SLIST_ENTRY entry
Definition: cpp.c:46
Definition: name.c:39
char mangled[32]
Definition: cpp.c:41
char * name
Definition: cpp.c:40
#define SLIST_ENTRY(type)
Definition: queue.h:102
wchar_t tm const _CrtWcstime_Writes_and_advances_ptr_ count wchar_t ** out
Definition: wcsftime.cpp:383
int ret
#define InterlockedPushEntrySList(SListHead, SListEntry)
Definition: rtlfuncs.h:3406
#define InterlockedPopEntrySList(SListHead)
Definition: rtlfuncs.h:3409
FORCEINLINE VOID InitializeSListHead(_Out_ PSLIST_HEADER SListHead)
Definition: rtlfuncs.h:3368