Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
e5ffcd88
Commit
e5ffcd88
authored
May 26, 2008
by
Jon Griffiths
Committed by
Alexandre Julliard
May 27, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt/tests: Fix 4 tests that always fail on Vista.
parent
c5310eda
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
cpp.c
dlls/msvcrt/tests/cpp.c
+4
-0
No files found.
dlls/msvcrt/tests/cpp.c
View file @
e5ffcd88
...
...
@@ -301,6 +301,7 @@ static void test_exception(void)
/* Operator equals */
memset
(
&
e2
,
0
,
sizeof
(
e2
));
call_func1
(
pexception_default_ctor
,
&
e2
);
pe
=
call_func2
(
pexception_opequals
,
&
e2
,
&
e
);
ok
(
e2
.
vtable
!=
NULL
,
"Null exception vtable for e2
\n
"
);
ok
(
e2
.
name
&&
e2
.
name
!=
e
.
name
&&
!
strcmp
(
e2
.
name
,
"An exception name"
),
"Bad exception name for e2
\n
"
);
...
...
@@ -425,6 +426,7 @@ static void test_bad_typeid(void)
/* Operator equals */
memset
(
&
e2
,
1
,
sizeof
(
e2
));
call_func1
(
pexception_default_ctor
,
&
e2
);
pe
=
call_func2
(
pbad_typeid_opequals
,
&
e2
,
&
e
);
ok
(
e2
.
vtable
!=
NULL
,
"Null bad_typeid vtable for e2
\n
"
);
ok
(
e2
.
name
&&
e2
.
name
!=
e
.
name
&&
!
strcmp
(
e2
.
name
,
"A bad_typeid name"
),
"Bad bad_typeid name for e2
\n
"
);
...
...
@@ -552,6 +554,7 @@ static void test_bad_cast(void)
/* Operator equals */
memset
(
&
e2
,
1
,
sizeof
(
e2
));
call_func1
(
pexception_default_ctor
,
&
e2
);
pe
=
call_func2
(
pbad_cast_opequals
,
&
e2
,
&
e
);
ok
(
e2
.
vtable
!=
NULL
,
"Null bad_cast vtable for e2
\n
"
);
ok
(
e2
.
name
&&
e2
.
name
!=
e
.
name
&&
!
strcmp
(
e2
.
name
,
"A bad_cast name"
),
"Bad bad_cast name for e2
\n
"
);
...
...
@@ -653,6 +656,7 @@ static void test___non_rtti_object(void)
/* Operator equals */
memset
(
&
e2
,
1
,
sizeof
(
e2
));
call_func1
(
pexception_default_ctor
,
&
e2
);
pe
=
call_func2
(
p__non_rtti_object_opequals
,
&
e2
,
&
e
);
ok
(
e2
.
vtable
!=
NULL
,
"Null __non_rtti_object vtable for e2
\n
"
);
ok
(
e2
.
name
&&
e2
.
name
!=
e
.
name
&&
!
strcmp
(
e2
.
name
,
"A __non_rtti_object name"
),
"Bad __non_rtti_object name for e2
\n
"
);
...
...
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