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
f2f44de6
Commit
f2f44de6
authored
Aug 15, 2006
by
Paul Vriens
Committed by
Alexandre Julliard
Aug 15, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel/tests: Wrong error code checked.
parent
2bd9c59c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
file.c
dlls/kernel/tests/file.c
+3
-1
No files found.
dlls/kernel/tests/file.c
View file @
f2f44de6
...
...
@@ -1214,7 +1214,9 @@ static void test_FindFirstFileA(void)
handle
=
FindFirstFileA
(
buffer2
,
&
search_results
);
err
=
GetLastError
();
ok
(
handle
==
INVALID_HANDLE_VALUE
,
"FindFirstFile on %s should Fail
\n
"
,
buffer2
);
ok
(
err
==
ERROR_FILE_NOT_FOUND
,
"Bad Error number %d
\n
"
,
err
);
todo_wine
{
ok
(
err
==
ERROR_PATH_NOT_FOUND
,
"Bad Error number %d
\n
"
,
err
);
}
/* try FindFirstFileA on "C:\foo\bar.txt" */
SetLastError
(
0xdeadbeaf
);
...
...
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