mirror of
https://github.com/reactos/wine.git
synced 2025-02-20 12:50:53 +00:00
kernel32: Add test for renaming file over itself.
This commit is contained in:
parent
d28e5a0551
commit
68cc3ff120
@ -564,6 +564,9 @@ static void test_CopyFileA(void)
|
||||
ret = GetTempFileNameA(temp_path, prefix, 0, source);
|
||||
ok(ret != 0, "GetTempFileNameA error %d\n", GetLastError());
|
||||
|
||||
ret = MoveFileA(source, source);
|
||||
todo_wine ok(ret, "MoveFileA: failed, error %d\n", GetLastError());
|
||||
|
||||
/* make the source have not zero size */
|
||||
hfile = CreateFileA(source, GENERIC_WRITE, 0, NULL, OPEN_EXISTING, 0, 0 );
|
||||
ok(hfile != INVALID_HANDLE_VALUE, "failed to open source file\n");
|
||||
|
Loading…
x
Reference in New Issue
Block a user