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
be3e9884
Commit
be3e9884
authored
Aug 02, 2015
by
YongHao Hu
Committed by
Alexandre Julliard
Aug 05, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcp120/tests: Fix error test case of tr2_sys_Copy_file in FAT filesystem.
parent
21740b5e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
msvcp120.c
dlls/msvcp120/tests/msvcp120.c
+3
-1
No files found.
dlls/msvcp120/tests/msvcp120.c
View file @
be3e9884
...
...
@@ -564,7 +564,6 @@ static void test_tr2_sys__Copy_file(void)
{
"f1"
,
"tr2_test_dir
\\
f1_copy"
,
TRUE
,
ERROR_SUCCESS
,
FALSE
},
{
"f1"
,
"tr2_test_dir
\\
f1_copy"
,
TRUE
,
ERROR_FILE_EXISTS
,
FALSE
},
{
"f1"
,
"tr2_test_dir
\\
f1_copy"
,
FALSE
,
ERROR_SUCCESS
,
FALSE
},
{
"f1"
,
"tr2_test_dir"
,
TRUE
,
ERROR_ACCESS_DENIED
,
TRUE
},
{
"tr2_test_dir"
,
"f1"
,
TRUE
,
ERROR_ACCESS_DENIED
,
FALSE
},
{
"tr2_test_dir"
,
"tr2_test_dir_copy"
,
TRUE
,
ERROR_ACCESS_DENIED
,
FALSE
},
{
NULL
,
"f1"
,
TRUE
,
ERROR_INVALID_PARAMETER
,
TRUE
},
...
...
@@ -594,6 +593,9 @@ static void test_tr2_sys__Copy_file(void)
ok
(
p_tr2_sys__File_size
(
tests
[
i
].
source
)
==
p_tr2_sys__File_size
(
tests
[
i
].
dest
),
"test_tr2_sys__Copy_file(): test %d failed, two files' size are not equal
\n
"
,
i
+
1
);
}
ret
=
p_tr2_sys__Copy_file
(
"f1"
,
"tr2_test_dir"
,
TRUE
);
ok
(
ret
==
ERROR_ACCESS_DENIED
||
ret
==
ERROR_FILE_EXISTS
,
"test_tr2_sys__Copy_file(): expect: ERROR_ACCESS_DENIED or ERROR_FILE_EXISTS, got %d
\n
"
,
ret
);
ok
(
DeleteFileA
(
"f1"
),
"expect f1 to exist
\n
"
);
ok
(
DeleteFileA
(
"f1_copy"
),
"expect f1_copy to exist
\n
"
);
...
...
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