Gijs Vermeulen : shell32/tests: Use 'shellpath' as tmpfile name in PathResolve tests.

Alexandre Julliard julliard at winehq.org
Mon May 16 15:37:56 CDT 2022


Module: wine
Branch: master
Commit: 8ee96cff6c13c92b0a9cba0a805ddf47084ef766
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=8ee96cff6c13c92b0a9cba0a805ddf47084ef766

Author: Gijs Vermeulen <gijsvrm at gmail.com>
Date:   Fri May 13 16:53:37 2022 +0200

shell32/tests: Use 'shellpath' as tmpfile name in PathResolve tests.

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=52995
Signed-off-by: Gijs Vermeulen <gijsvrm at gmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/shell32/tests/shellpath.c | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/dlls/shell32/tests/shellpath.c b/dlls/shell32/tests/shellpath.c
index 91ecf6b9a80..29b47ac8706 100644
--- a/dlls/shell32/tests/shellpath.c
+++ b/dlls/shell32/tests/shellpath.c
@@ -2954,14 +2954,14 @@ static void test_PathResolve(void)
         const WCHAR *expected_path;
     } tests[] = {
         /* no flags */
-        { L"test", 0, FALSE, L"test" },
-        { L"C:\\test", 0, TRUE, L"C:\\test" },
+        { L"shellpath", 0, FALSE, L"shellpath" },
+        { L"C:\\shellpath", 0, TRUE, L"C:\\shellpath" },
         { L"regedit", 0, FALSE, L"regedit" },
         { testfile, 0, TRUE, testfile },
 
         /* PRF_VERIFYEXISTS */
-        { L"test", PRF_VERIFYEXISTS, TRUE, testfile_lnk },
-        { L"C:\\test", PRF_VERIFYEXISTS, FALSE, L"C:\\test" },
+        { L"shellpath", PRF_VERIFYEXISTS, TRUE, testfile_lnk },
+        { L"C:\\shellpath", PRF_VERIFYEXISTS, FALSE, L"C:\\shellpath" },
         /* common extensions are tried even if PRF_TRYPROGRAMEXTENSIONS isn't passed */
         /* directories in dirs parameter are always searched first even if PRF_FIRSTDIRDEF isn't passed */
         { L"regedit", PRF_VERIFYEXISTS, TRUE, regedit_cmd },
@@ -2987,14 +2987,14 @@ static void test_PathResolve(void)
 
         /* PRF_VERIFYEXISTS | PRF_REQUIREABSOLUTE */
         /* only PRF_VERIFYEXISTS matters*/
-        { L"test", PRF_VERIFYEXISTS | PRF_REQUIREABSOLUTE, TRUE, testfile_lnk },
-        { L"C:\\test", PRF_VERIFYEXISTS | PRF_REQUIREABSOLUTE, FALSE, L"C:\\test" },
+        { L"shellpath", PRF_VERIFYEXISTS | PRF_REQUIREABSOLUTE, TRUE, testfile_lnk },
+        { L"C:\\shellpath", PRF_VERIFYEXISTS | PRF_REQUIREABSOLUTE, FALSE, L"C:\\shellpath" },
         { L"regedit", PRF_VERIFYEXISTS | PRF_REQUIREABSOLUTE, TRUE, regedit_cmd },
         { testfile, PRF_VERIFYEXISTS | PRF_REQUIREABSOLUTE, TRUE, testfile_lnk },
 
         /* PRF_TRYPROGRAMEXTENSIONS */
-        { L"test", PRF_TRYPROGRAMEXTENSIONS, TRUE, testfile_lnk},
-        { L"C:\\test", PRF_TRYPROGRAMEXTENSIONS, FALSE, L"C:\\test" },
+        { L"shellpath", PRF_TRYPROGRAMEXTENSIONS, TRUE, testfile_lnk},
+        { L"C:\\shellpath", PRF_TRYPROGRAMEXTENSIONS, FALSE, L"C:\\shellpath" },
         { L"regedit", PRF_TRYPROGRAMEXTENSIONS, TRUE, regedit_cmd },
         /* .dll is not tried */
         { L"bcrypt", PRF_TRYPROGRAMEXTENSIONS, FALSE, L"bcrypt" },
@@ -3016,7 +3016,7 @@ static void test_PathResolve(void)
     GetTempPathW(MAX_PATH, tempdir);
 
     lstrcpyW(testfile, tempdir);
-    lstrcatW(testfile, L"test");
+    lstrcatW(testfile, L"shellpath");
     lstrcpyW(testfile_lnk, testfile);
     lstrcatW(testfile_lnk, L".lnk");
 




More information about the wine-cvs mailing list