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
824d631c
Commit
824d631c
authored
Jul 01, 2008
by
James Hawkins
Committed by
Alexandre Julliard
Jul 01, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Fix a test that fails in win2k.
parent
c0e89107
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
shfldr_special.c
dlls/shell32/tests/shfldr_special.c
+5
-1
No files found.
dlls/shell32/tests/shfldr_special.c
View file @
824d631c
...
...
@@ -43,6 +43,7 @@ static void test_parse_for_entire_network(void)
LPITEMIDLIST
pidl
;
DWORD
attr
=
~
0
;
DWORD
expected_attr
;
DWORD
alter_attr
;
hr
=
SHGetDesktopFolder
(
&
psfDesktop
);
ok
(
hr
==
S_OK
,
"SHGetDesktopFolder failed with error 0x%x
\n
"
,
hr
);
...
...
@@ -52,8 +53,11 @@ static void test_parse_for_entire_network(void)
todo_wine
ok
(
eaten
==
0xdeadbeef
,
"eaten should not have been set to %u
\n
"
,
eaten
);
expected_attr
=
SFGAO_HASSUBFOLDER
|
SFGAO_FOLDER
|
SFGAO_FILESYSANCESTOR
|
SFGAO_STORAGEANCESTOR
|
SFGAO_HASPROPSHEET
|
SFGAO_CANLINK
;
alter_attr
=
(
expected_attr
&
(
~
SFGAO_STORAGEANCESTOR
))
|
SFGAO_STREAM
;
todo_wine
ok
(
attr
==
expected_attr
,
"attr should be 0x%x, not 0x%x
\n
"
,
expected_attr
,
attr
);
ok
(
attr
==
expected_attr
||
attr
==
alter_attr
,
/* win2k */
"attr should be 0x%x or 0x%x, not 0x%x
\n
"
,
expected_attr
,
alter_attr
,
attr
);
ILFree
(
pidl
);
}
...
...
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