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
c72d1329
Commit
c72d1329
authored
Sep 07, 2005
by
Michael Jung
Committed by
Alexandre Julliard
Sep 07, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed two todo_wine's around tests that meanwhile succeed on wine.
parent
d101921b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
shlfolder.c
dlls/shell32/tests/shlfolder.c
+2
-3
No files found.
dlls/shell32/tests/shlfolder.c
View file @
c72d1329
...
...
@@ -464,8 +464,7 @@ static void test_CallForAttributes(void)
ok
(
SUCCEEDED
(
hr
),
"Desktop->GetAttributesOf(MyDocuments) failed! hr = %08lx
\n
"
,
hr
);
/* We need the following setup (as observed on WinXP SP2), for the tests to make sense. */
todo_wine
{
ok
(
dwAttributes
&
SFGAO_FILESYSTEM
,
"SFGAO_FILESYSTEM attribute is not set for MyDocuments!
\n
"
);
}
ok
(
dwAttributes
&
SFGAO_FILESYSTEM
,
"SFGAO_FILESYSTEM attribute is not set for MyDocuments!
\n
"
);
ok
(
!
(
dwAttributes
&
SFGAO_ISSLOW
),
"SFGAO_ISSLOW attribute is set for MyDocuments!
\n
"
);
ok
(
!
(
dwAttributes
&
SFGAO_GHOSTED
),
"SFGAO_GHOSTED attribute is set for MyDocuments!
\n
"
);
...
...
@@ -473,7 +472,7 @@ static void test_CallForAttributes(void)
* key. So the test will return at this point, if run on wine.
*/
lResult
=
RegOpenKeyExW
(
HKEY_CLASSES_ROOT
,
wszMyDocumentsKey
,
0
,
KEY_WRITE
|
KEY_READ
,
&
hKey
);
todo_wine
{
ok
(
lResult
==
ERROR_SUCCESS
,
"RegOpenKeyEx failed! result: %08lx
\n
"
,
lResult
);
}
ok
(
lResult
==
ERROR_SUCCESS
,
"RegOpenKeyEx failed! result: %08lx
\n
"
,
lResult
);
if
(
lResult
!=
ERROR_SUCCESS
)
{
IMalloc_Free
(
ppM
,
pidlMyDocuments
);
IShellFolder_Release
(
psfDesktop
);
...
...
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