Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
067be978
Commit
067be978
authored
Feb 20, 2006
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Feb 20, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Add some tests for __unDName().
Add some tests for unDName() checking: - data type modifiers A,B,P,Q,R,S - literal strings - back references to names
parent
262a5eec
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
cpp.c
dlls/msvcrt/tests/cpp.c
+9
-0
No files found.
dlls/msvcrt/tests/cpp.c
View file @
067be978
...
...
@@ -963,6 +963,15 @@ static void test_demangle(void)
{
"??_V@YAXPAX@Z"
,
"void __cdecl operator delete[](void *)"
},
{
"??X?$_Complex_base@M@std@@QAEAAV01@ABM@Z"
,
"public: class std::_Complex_base<float> & __thiscall std::_Complex_base<float>::operator*=(float const &)"
},
{
"??Xstd@@YAAAV?$complex@M@0@AAV10@ABV10@@Z"
,
"class std::complex<float> & __cdecl std::operator*=(class std::complex<float> &,class std::complex<float> const &)"
},
{
"?aaa@@YAHAAUbbb@@@Z"
,
"int __cdecl aaa(struct bbb &)"
},
{
"?aaa@@YAHBAUbbb@@@Z"
,
"int __cdecl aaa(struct bbb & volatile)"
},
{
"?aaa@@YAHPAUbbb@@@Z"
,
"int __cdecl aaa(struct bbb *)"
},
{
"?aaa@@YAHQAUbbb@@@Z"
,
"int __cdecl aaa(struct bbb * const)"
},
{
"?aaa@@YAHRAUbbb@@@Z"
,
"int __cdecl aaa(struct bbb * volatile)"
},
{
"?aaa@@YAHSAUbbb@@@Z"
,
"int __cdecl aaa(struct bbb * const volatile)"
},
{
"??0aa.a@@QAE@XZ"
,
"??0aa.a@@QAE@XZ"
},
{
"??0aa$_3a@@QAE@XZ"
,
"public: __thiscall aa$_3a::aa$_3a(void)"
},
{
"??2?$aaa@AAUbbb@@AAUccc@@AAU2@@ddd@1eee@2@QAEHXZ"
,
"public: int __thiscall eee::eee::ddd::ddd::aaa<struct bbb &,struct ccc &,struct ccc &>::operator new(void)"
},
};
int
i
,
num_test
=
(
sizeof
(
test
)
/
sizeof
(
test
[
0
]));
char
*
name
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment