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
856be7c9
Commit
856be7c9
authored
Oct 09, 2009
by
Paul Vriens
Committed by
Alexandre Julliard
Oct 09, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32/tests: Fix remaining failures on WinMe.
parent
84cb7031
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
shlfileop.c
dlls/shell32/tests/shlfileop.c
+2
-1
No files found.
dlls/shell32/tests/shlfileop.c
View file @
856be7c9
...
...
@@ -2073,9 +2073,10 @@ static void test_sh_path_prepare(void)
WideCharToMultiByte
(
CP_ACP
,
0
,
UNICODE_PATH
,
-
1
,
UNICODE_PATH_A
,
sizeof
(
UNICODE_PATH_A
),
NULL
,
NULL
);
/* unicode directory doesn't exist, SHPPFW_NONE */
RemoveDirectoryA
(
UNICODE_PATH_A
);
res
=
pSHPathPrepareForWriteW
(
0
,
0
,
UNICODE_PATH
,
SHPPFW_NONE
);
ok
(
res
==
HRESULT_FROM_WIN32
(
ERROR_PATH_NOT_FOUND
),
"res == %08x, expected HRESULT_FROM_WIN32(ERROR_PATH_NOT_FOUND)
\n
"
,
res
);
ok
(
!
file_exists
W
(
UNICODE_PATH
),
"unicode path was created but shouldn't be
\n
"
);
ok
(
!
file_exists
(
UNICODE_PATH_A
),
"unicode path was created but shouldn't be
\n
"
);
RemoveDirectoryA
(
UNICODE_PATH_A
);
/* unicode directory doesn't exist, SHPPFW_DIRCREATE */
...
...
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