[SHELL32][SHELL32_APITEST] FindExecutable: Add PRF_FIRSTDIRDEF flag (#6681)

Follow-up to #6635. The directory search without this flag didn't work.
JIRA issue: CORE-19493
- Add PRF_FIRSTDIRDEF flag for PathResolveW call.
- Delete needless macro definitions in PathQualifyExW.
- Remove an assertion in IsLFNDriveW.
- Fix shell32_apitest:FindExecutable testcase.
This commit is contained in:
Katayama Hirofumi MZ 2024-03-29 11:15:38 +09:00 committed by GitHub
parent 5442f87080
commit 84f15b15fb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 1 additions and 12 deletions

View file

@ -71,11 +71,6 @@ static const TEST_ENTRY s_entries[] =
{ __LINE__, SE_ERR_FNF, "C:\\notepad.exe", DIR_2, "" },
{ __LINE__, SE_ERR_FNF, "C:\\notepad.exe", DIR_3, "" },
{ __LINE__, SE_ERR_FNF, "C:\\notepad.exe", DIR_4, "" },
{ __LINE__, SE_ERR_FNF, "..\\notepad.exe", DIR_0, "" },
{ __LINE__, SE_ERR_FNF, "..\\notepad.exe", DIR_1, "" },
{ __LINE__, SE_ERR_FNF, "..\\notepad.exe", DIR_2, "" },
{ __LINE__, SE_ERR_FNF, "..\\notepad.exe", DIR_3, "" },
{ __LINE__, SE_ERR_FNF, "..\\notepad.exe", DIR_4, "" },
{ __LINE__, SE_ERR_FNF, ".\\notepad.exe", DIR_0, "" },
{ __LINE__, SE_ERR_FNF, ".\\notepad.exe", DIR_1, "" },
{ __LINE__, SE_ERR_FNF, ".\\notepad.exe", DIR_2, "" },