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
c0598baa
Commit
c0598baa
authored
Jan 20, 2024
by
Piotr Caban
Committed by
Alexandre Julliard
Jan 22, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcp140/tests: Fix _Syserror_map(0) test failure in newest msvcp140.
parent
1d917529
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
+2
-0
msvcp140.c
dlls/msvcp140/tests/msvcp140.c
+2
-0
No files found.
dlls/msvcp140/tests/msvcp140.c
View file @
c0598baa
...
...
@@ -1396,6 +1396,8 @@ static void test__Syserror_map(void)
r1
=
p__Syserror_map
(
0
);
ok
(
r1
!=
NULL
,
"_Syserror_map(0) returned NULL
\n
"
);
r1
=
p__Syserror_map
(
1233
);
ok
(
r1
!=
NULL
,
"_Syserror_map(1233) returned NULL
\n
"
);
r2
=
p__Syserror_map
(
1234
);
ok
(
r2
!=
NULL
,
"_Syserror_map(1234) returned NULL
\n
"
);
ok
(
r1
==
r2
,
"r1 = %p(%s), r2 = %p(%s)
\n
"
,
r1
,
r1
,
r2
,
r2
);
...
...
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