[PATCH 0/1] MR67: 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(a)gmail.com> I also tried the GetTempFileName approach but it has a few problems: - A .tmp file is created, which we don't want - The returned path has a file extension in it - We need to create a .lnk file anyway to test PRF_DONTFINDLNK -- https://gitlab.winehq.org/wine/wine/-/merge_requests/67
From: Gijs Vermeulen <gijsvrm(a)gmail.com> Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=52995 Signed-off-by: Gijs Vermeulen <gijsvrm(a)gmail.com> --- 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"); -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/67
participants (2)
-
Gijs Vermeulen -
Gijs Vermeulen (@gverm)