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
68ffbaa7
Commit
68ffbaa7
authored
Jun 21, 2012
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Jun 22, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Add a test for deleting a file opened for reading.
parent
0a8be862
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
0 deletions
+21
-0
file.c
dlls/kernel32/tests/file.c
+21
-0
No files found.
dlls/kernel32/tests/file.c
View file @
68ffbaa7
...
...
@@ -1291,6 +1291,8 @@ static void test_GetTempFileNameA(void)
static
void
test_DeleteFileA
(
void
)
{
BOOL
ret
;
char
temp_path
[
MAX_PATH
],
temp_file
[
MAX_PATH
];
HANDLE
hfile
;
ret
=
DeleteFileA
(
NULL
);
ok
(
!
ret
&&
(
GetLastError
()
==
ERROR_INVALID_PARAMETER
||
...
...
@@ -1308,6 +1310,25 @@ static void test_DeleteFileA( void )
GetLastError
()
==
ERROR_ACCESS_DENIED
||
GetLastError
()
==
ERROR_INVALID_FUNCTION
),
"DeleteFileA(
\"
nul
\"
) returned ret=%d error=%d
\n
"
,
ret
,
GetLastError
());
GetTempPathA
(
MAX_PATH
,
temp_path
);
GetTempFileName
(
temp_path
,
"tst"
,
0
,
temp_file
);
SetLastError
(
0xdeadbeef
);
hfile
=
CreateFile
(
temp_file
,
GENERIC_READ
,
FILE_SHARE_DELETE
|
FILE_SHARE_READ
,
NULL
,
OPEN_EXISTING
,
0
,
0
);
ok
(
hfile
!=
INVALID_HANDLE_VALUE
,
"CreateFile error %d
\n
"
,
GetLastError
());
SetLastError
(
0xdeadbeef
);
ret
=
DeleteFile
(
temp_file
);
todo_wine
ok
(
ret
,
"DeleteFile error %d
\n
"
,
GetLastError
());
SetLastError
(
0xdeadbeef
);
ret
=
CloseHandle
(
hfile
);
ok
(
ret
,
"CloseHandle error %d
\n
"
,
GetLastError
());
ret
=
DeleteFile
(
temp_file
);
todo_wine
ok
(
!
ret
,
"DeleteFile should fail
\n
"
);
}
static
void
test_DeleteFileW
(
void
)
...
...
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