Module: wine
Branch: master
Commit: 69cf059e8bd3a5efeb1410a23dad5f363903a1d6
URL: http://source.winehq.org/git/wine.git/?a=commit;h=69cf059e8bd3a5efeb1410a23…
Author: Juan Lang <juan.lang(a)gmail.com>
Date: Wed Feb 4 08:38:43 2009 -0800
shell32: Remove an obsolete comment.
---
dlls/shell32/tests/shellpath.c | 3 ---
1 files changed, 0 insertions(+), 3 deletions(-)
diff --git a/dlls/shell32/tests/shellpath.c b/dlls/shell32/tests/shellpath.c
index 9078040..71c236b 100644
--- a/dlls/shell32/tests/shellpath.c
+++ b/dlls/shell32/tests/shellpath.c
@@ -19,9 +19,6 @@
* This is a test program for the SHGet{Special}Folder{Path|Location} functions
* of shell32, that get either a filesystem path or a LPITEMIDLIST (shell
* namespace) path for a given folder (CSIDL value).
- *
- * FIXME:
- * - Need to verify on more systems.
*/
#define COBJMACROS
Module: wine
Branch: master
Commit: 63abc12461a6a3dc79f413a659f02a0681a4409d
URL: http://source.winehq.org/git/wine.git/?a=commit;h=63abc12461a6a3dc79f413a65…
Author: Juan Lang <juan.lang(a)gmail.com>
Date: Mon Feb 2 13:45:18 2009 -0800
shell32: Remove a test that fails on Win64.
---
dlls/shell32/tests/shellpath.c | 16 +++++-----------
1 files changed, 5 insertions(+), 11 deletions(-)
diff --git a/dlls/shell32/tests/shellpath.c b/dlls/shell32/tests/shellpath.c
index bf125b0..901b662 100644
--- a/dlls/shell32/tests/shellpath.c
+++ b/dlls/shell32/tests/shellpath.c
@@ -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 */