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
e7f5c45c
Commit
e7f5c45c
authored
Jun 13, 2008
by
Paul Vriens
Committed by
Alexandre Julliard
Jun 13, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32/tests: Fix a few typos.
parent
63f68ade
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
file.c
dlls/kernel32/tests/file.c
+3
-3
No files found.
dlls/kernel32/tests/file.c
View file @
e7f5c45c
...
...
@@ -1456,7 +1456,7 @@ static void test_FindFirstFileExA(void)
ok
(
strcmp
(
search_results
.
cFileName
,
".."
)
==
0
,
"Second entry should be '..' is %s
\n
"
,
search_results
.
cFileName
);
ok
(
FindNextFile
(
handle
,
&
search_results
),
"Fetching third file failed
\n
"
);
ok
(
CHECK_NAME
(
search_results
.
cFileName
),
"Invalid th
ri
d entry - %s
\n
"
,
search_results
.
cFileName
);
ok
(
CHECK_NAME
(
search_results
.
cFileName
),
"Invalid th
ir
d entry - %s
\n
"
,
search_results
.
cFileName
);
ok
(
FindNextFile
(
handle
,
&
search_results
),
"Fetching fourth file failed
\n
"
);
ok
(
CHECK_NAME
(
search_results
.
cFileName
),
"Invalid fourth entry - %s
\n
"
,
search_results
.
cFileName
);
...
...
@@ -1840,14 +1840,14 @@ static void test_overlapped(void)
memset
(
&
ov
,
0
,
sizeof
ov
);
result
=
1
;
r
=
GetOverlappedResult
(
0
,
&
ov
,
&
result
,
0
);
ok
(
r
==
TRUE
,
"should return
fals
e
\n
"
);
ok
(
r
==
TRUE
,
"should return
tru
e
\n
"
);
ok
(
result
==
0
,
"wrong result %u
\n
"
,
result
);
result
=
0
;
ov
.
Internal
=
0
;
ov
.
InternalHigh
=
0xabcd
;
r
=
GetOverlappedResult
(
0
,
&
ov
,
&
result
,
0
);
ok
(
r
==
TRUE
,
"should return
fals
e
\n
"
);
ok
(
r
==
TRUE
,
"should return
tru
e
\n
"
);
ok
(
result
==
0xabcd
,
"wrong result %u
\n
"
,
result
);
SetLastError
(
0xb00
);
...
...
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