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
63abc124
Commit
63abc124
authored
Feb 02, 2009
by
Juan Lang
Committed by
Alexandre Julliard
Feb 04, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Remove a test that fails on Win64.
parent
0924ddd2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
11 deletions
+5
-11
shellpath.c
dlls/shell32/tests/shellpath.c
+5
-11
No files found.
dlls/shell32/tests/shellpath.c
View file @
63abc124
...
...
@@ -693,8 +693,8 @@ static void testWinDir(void)
}
}
/* Verifies the shell path for CSIDL_SYSTEM
and CSIDL_SYSTEMX86 matches the
*
return from
GetSystemDirectory. If SHGetSpecialFolderPath fails, no harm,
/* Verifies the shell path for CSIDL_SYSTEM
matches the return from
* GetSystemDirectory. If SHGetSpecialFolderPath fails, no harm,
* no foul--not every shell32 version supports CSIDL_SYSTEM.
*/
static
void
testSystemDir
(
void
)
...
...
@@ -712,16 +712,10 @@ static void testSystemDir(void)
"GetSystemDirectory returns %s SHGetSpecialFolderPath returns %s
\n
"
,
systemDir
,
systemShellPath
);
}
/* check CSIDL_SYSTEMX86; note that this isn't always present, so don't
* worry if it fails
/* CSIDL_SYSTEMX86 isn't checked in the same way, since it's different
* on Win64 (and non-x86 Windows systems, if there are any still in
* existence) than on Win32.
*/
if
(
pSHGetSpecialFolderPathA
(
NULL
,
systemShellPath
,
CSIDL_SYSTEMX86
,
FALSE
))
{
myPathRemoveBackslashA
(
systemShellPath
);
ok
(
!
lstrcmpiA
(
systemDir
,
systemShellPath
),
"GetSystemDirectory returns %s SHGetSpecialFolderPath returns %s
\n
"
,
systemDir
,
systemShellPath
);
}
}
/* Globals used by subprocesses */
...
...
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