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
81f2d3cc
Commit
81f2d3cc
authored
Apr 10, 2008
by
James Hawkins
Committed by
Alexandre Julliard
Apr 11, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Fix a few tests that fail in win2k.
parent
df422cf0
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
12 deletions
+5
-12
shlfileop.c
dlls/shell32/tests/shlfileop.c
+5
-12
No files found.
dlls/shell32/tests/shlfileop.c
View file @
81f2d3cc
...
...
@@ -850,10 +850,7 @@ static void test_copy(void)
shfo
.
pTo
=
"two.txt
\0
"
;
shfo
.
fFlags
=
FOF_NOCONFIRMATION
|
FOF_SILENT
|
FOF_NOERRORUI
;
retval
=
SHFileOperation
(
&
shfo
);
todo_wine
{
ok
(
retval
==
1148
,
"Expected 1148, got %d
\n
"
,
retval
);
}
ok
(
retval
==
1148
||
retval
==
1026
,
"Expected 1148 or 1026, got %d
\n
"
,
retval
);
ok
(
DeleteFileA
(
"one.txt"
),
"Expected file to exist
\n
"
);
ok
(
!
DeleteFileA
(
"two.txt"
),
"Expected file to not exist
\n
"
);
...
...
@@ -892,10 +889,7 @@ static void test_copy(void)
shfo
.
pTo
=
to
;
shfo
.
fFlags
=
FOF_NOCONFIRMATION
|
FOF_SILENT
|
FOF_NOERRORUI
;
retval
=
SHFileOperation
(
&
shfo
);
todo_wine
{
ok
(
retval
==
1148
,
"Expected 1148, got %d
\n
"
,
retval
);
}
ok
(
retval
==
1148
||
retval
==
1026
,
"Expected 1148 or 1026, got %d
\n
"
,
retval
);
ok
(
DeleteFileA
(
"one.txt"
),
"Expected file to exist
\n
"
);
ok
(
!
DeleteFileA
(
"two.txt"
),
"Expected file to not exist
\n
"
);
...
...
@@ -975,10 +969,9 @@ static void test_copy(void)
ok
(
DeleteFileA
(
"one.txt"
),
"Expected file to exist
\n
"
);
ok
(
DeleteFileA
(
"two.txt"
),
"Expected file to exist
\n
"
);
ok
(
!
RemoveDirectoryA
(
"threedir"
),
"Expected dir to not exist
\n
"
);
todo_wine
{
ok
(
!
DeleteFileA
(
"threedir"
),
"Expected file to not exist
\n
"
);
}
/* file exists in win2k */
DeleteFileA
(
"threedir"
);
createTestFile
(
"one.txt"
);
createTestFile
(
"two.txt"
);
...
...
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