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
c81d1e78
Commit
c81d1e78
authored
Oct 05, 2009
by
Dmitry Kislyuk
Committed by
Alexandre Julliard
Oct 05, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32/tests: Pass test on error code returned by Windows 7.
parent
ce5ae1ae
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
profile.c
dlls/kernel32/tests/profile.c
+3
-2
No files found.
dlls/kernel32/tests/profile.c
View file @
c81d1e78
...
...
@@ -844,8 +844,9 @@ static void test_GetPrivateProfileString(const char *content, const char *descri
ok
(
ret
==
0
,
"expected return size 0, got %d
\n
"
,
ret
);
ok
(
!
lstrcmpA
(
buf
,
""
),
"Expected
\"\"
, got
\"
%s
\"\n
"
,
buf
);
todo_wine
ok
(
GetLastError
()
==
0xdeadbeef
,
"expected 0xdeadbeef, got %d
\n
"
,
GetLastError
());
ok
(
GetLastError
()
==
0xdeadbeef
||
GetLastError
()
==
ERROR_FILE_NOT_FOUND
/* Win 7 */
,
"expected 0xdeadbeef or ERROR_FILE_NOT_FOUND, got %d
\n
"
,
GetLastError
());
DeleteFileA
(
path
);
...
...
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