On Fri Aug 21 20:37:53 2026 +0000, Vibhav Pant wrote:
`foundation_wow64` is only used when `IsWow64Process` returns TRUE, so this would only be tested when the 32-bit version of the test is running, right? ```c IsWow64Process(GetCurrentProcess(), &is_wow64); hr = MetaDataGetDispenser(&CLSID_CorMetaDataDispenser, &IID_IMetaDataDispenser, (void **)&dispenser); ok(hr == S_OK, "got hr %#lx\n", hr); hr = IMetaDataDispenser_OpenScope(dispenser, is_wow64 ? foundation_wow64 : foundation, 0, &IID_IMetaDataImport, (IUnknown **)&md_import); ``` It's the 64-bit version in c:\windows\sysnative\winmetadata which is the same as the one in c:\windows\system32\winmetadata when running as 64-bit. If you omit the wow64 checks both versions will be tested.
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/11719#note_149600